views:

100

answers:

1

im trying to pass new query to FlexiGrid using this code:

$('#fgAllPatients').flexReload({ query: 'blah=qweqweqwe' });

but when it goes back to the webservice, it simply gets the old parameter and this new one is neglected. help!

A: 

you need to do it like this

 $('#fgAllPatients').flexOptions({ query: 'blah=qweqweqwe' }).flexReload();

sorry so late haven't been paying attention to this tag lately

mcgrailm
@marc had you already figured this out or was this helpful ?
mcgrailm