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.
我有一个带有 filterToolbar 的 jqgrid 正确显示:
jQuery("#myGrid").jqGrid('filterToolbar',{autosearch:true});
我希望它显示在标题栏之前,我该如何管理?
谢谢
尝试使用toolbar选项将工具栏放在网格的顶部:
toolbar
toolbar: [true, "top"]
这似乎达到了您正在寻找的效果,如演示页面下的演示所示New in version 3.1| Toolbars and userdata.
New in version 3.1
Toolbars and userdata
这有帮助吗?