开发者

how to pass new query to Flexigrid?

开发者 https://www.devze.com 2023-01-09 00:43 出处:网络
im trying to pass new query to FlexiGrid using t开发者_Python百科his code: $(\'#fgAllPatients\').flexReload({ query: \'blah=qweqweqwe\' });

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

0

精彩评论

暂无评论...
验证码 换一张
取 消