如何将新查询传递给 Flexigrid?

发布于 2024-09-11 12:27:52 字数 167 浏览 3 评论 0原文

我试图使用此代码将新查询传递给 FlexiGrid:

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

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

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行雁书 2024-09-18 12:27:53

你需要这样做抱歉

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

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文