im trying to pass new query to FlexiGrid using t开发者_Python百科his 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!
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
精彩评论