0

我正在尝试使用以下代码将新查询传递给 FlexiGrid:

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

但是当它返回到 web 服务时,它只是获取旧参数而忽略这个新参数。帮助!

4

1 回答 1

3

你需要这样做

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

抱歉这么晚了最近没关注这个标签

于 2010-08-06T15:07:41.943 回答