jqgrid在标题栏之前设置过滤器工具栏

时间:2012-07-25 10:33:25

标签: jquery jqgrid titlebar

我有一个带有filterToolbar的jqgrid正确显示:

jQuery("#myGrid").jqGrid('filterToolbar',{autosearch:true});

我希望它在标题栏之前显示,我该如何管理呢?

由于

1 个答案:

答案 0 :(得分:0)

尝试使用toolbar选项将工具栏放在网格顶部:

toolbar: [true, "top"]

这似乎达到了您所寻求的效果,New in version 3.1下的demonstrated on the demo page Toolbars and userdata

这有帮助吗?