Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户在 jqgrid 的搜索工具栏中键入内容时,jqgrid 是否可以自动搜索记录并根据用户在 jqgrid 中的输入显示它们?
您只需根据搜索字段的按键事件触发搜索事件
你可以searchOnEnter: false在init filterToolbar上设置。例如:
searchOnEnter: false
$(element).filterToolbar({ searchOnEnter: false, defaultSearch: 'cn', ignoreCase: true });