recreateFilter: false, drag: true, sField:'searchField', sValue:'searchString', sOper: 'searchOper', sFilter: 'filters', loadDefaults: true, // this options activates loading of default filters from grid's postData for Multipe Search only. beforeShowSearch: null, afterShowSearch : null, onInitializeSearch: null, afterRedraw : null, afterChange: null, sortStrategy: null, closeAfterSearch : false, closeAfterReset: false, closeOnEscape : false, searchOnEnter : false, multipleSearch : false, multipleGroup : false, //cloneSearchRowOnAdd: true, top : 0, left: 0, jqModal : true, modal: false, resize : true, width: 450, height: 'auto', dataheight: 'auto', showQuery: false, errorcheck : true, sopt: null, stringResult: undefined, onClose : null, onSearch : null, onReset : null, toTop : true, overlay : 30, columns : [], tmplNames : null, tmplFilters : null, tmplLabel : ' Template: ', showOnLoad: false, layer: null, 参数说明
时间: 2024-04-22 14:22:32 浏览: 64
Dojo之路:如何利用Dojo实现Drag and Drop效果
这是一个 JQGrid 插件中的搜索框(search dialog)的配置参数说明,具体含义如下:
- recreateFilter: 是否重新创建过滤器。
- drag: 是否允许拖拽。
- sField: 搜索字段名称。
- sValue: 搜索值名称。
- sOper: 搜索操作符名称。
- sFilter: 过滤器名称。
- loadDefaults: 是否从 grid 的 postData 中加载默认过滤器(仅适用于多重搜索)。
- beforeShowSearch: 在搜索框显示之前触发的事件。
- afterShowSearch: 在搜索框显示之后触发的事件。
- onInitializeSearch: 初始化搜索框时触发的事件。
- afterRedraw: 重新绘制搜索框时触发的事件。
- afterChange: 当搜索条件发生变化时触发的事件。
- sortStrategy: 排序策略。
- closeAfterSearch: 是否在搜索后关闭搜索框。
- closeAfterReset: 是否在重置搜索条件后关闭搜索框。
- closeOnEscape: 是否允许使用 ESC 键关闭搜索框。
- searchOnEnter: 是否在按下回车键时进行搜索。
- multipleSearch: 是否允许多重搜索。
- multipleGroup: 是否允许多重分组。
- top: 搜索框距离顶部的距离。
- left: 搜索框距离左侧的距离。
- jqModal: 是否使用 jqModal。
- modal: 是否使用 modal。
- resize: 是否允许调整大小。
- width: 搜索框的宽度。
- height: 搜索框的高度。
- dataheight: 数据区域的高度。
- showQuery: 是否显示搜索查询条件。
- errorcheck: 是否进行错误检查。
- sopt: 搜索操作符选项。
- stringResult: 是否返回字符串结果。
- onClose: 在搜索框关闭时触发的事件。
- onSearch: 在搜索时触发的事件。
- onReset: 在重置搜索条件时触发的事件。
- toTop: 是否将搜索框置于顶部。
- overlay: 重叠度。
- columns: 搜索框中的列。
- tmplNames: 模板名称。
- tmplFilters: 模板过滤器。
- tmplLabel: 模板标签。
- showOnLoad: 是否在加载时显示搜索框。
- layer: 层级。
阅读全文