jqGrid:搜索工具栏自动提交

发布于 2024-11-09 12:05:28 字数 72 浏览 0 评论 0原文

我有一个带有工具栏搜索的 jqGrid。当有人在搜索工具栏中键入而不是按 Enter 键时,如何使网格更新?

谢谢

I have a jqGrid with a Toolbar search. How do I make the grid update when someone types in the seach toolbar instead of having to press enter?

Thanks

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

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

发布评论

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

评论(3

月朦胧 2024-11-16 12:05:29

有一个 searchOnEnter 选项需要设置为 False。它看起来像这样。

$("#grid_id").jqGrid('filterToolbar',searchOnEnter:false);

查看有关 searchOnEnter 的更多信息 - 此处

There is a searchOnEnter option that you need to set to False. It would look something like this.

$("#grid_id").jqGrid('filterToolbar',searchOnEnter:false);

See more info on searchOnEnter - here

扭转时空 2024-11-16 12:05:29

我认为它必须在花括号中:

jQuery("#grid").jqGrid('filterToolbar', { searchOnEnter: false });

I think it has to be in curly braces:

jQuery("#grid").jqGrid('filterToolbar', { searchOnEnter: false });
筑梦 2024-11-16 12:05:29

我的过滤器工具栏上有自动完成选项,但在选择选项时不起作用(新值不会触发),最好的解决方法是什么?另外,我应该在哪里放置代码来触发按键或其他东西?

问候

I have autocomplete option on my filterToolbar and dont work when select an option (new value doesn't trigger) how would be the best workaround to this? Also, where should I put the code to trigger a key or something?

Regards

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