如何在增强网格中添加过滤器
Posted
技术标签:
【中文标题】如何在增强网格中添加过滤器【英文标题】:How to add filter in EnhancedGrid 【发布时间】:2015-08-03 13:01:19 【问题描述】:我想在 dojox.grid.EnhancedGrid 中添加过滤器,并且我的网格是以声明方式创建的。我在 data-dojo-props 属性中添加了过滤器。
我的代码:
<div id="myGrid"
data-dojo-type="dojox.grid.EnhancedGrid"
data-dojo-props="plugins:indirectSelection: true,nestedSorting: true,
filter:
closeFilterbarButton: true,
ruleCount: 5,
itemsName: "songs"
,
store: mystore,
structure: [
defaultCell: width: 8, editable: false, type: dojox.grid.cells._Widget, styles: 'text-align: left;' ,
rows: [
field: 'RN', name: '$RN', width: '32%',formatter : function(val, rowIdx, cell)
cell.customClasses.push('anchorLookAlike');
return val;
,
field: 'DC', name: '$DC', width: '10%' ,
field: 'PN', name: '$PN', width: '10%' ,
field: 'MD', name: '$MD', width: '10%' ,
field: 'RD', name: '$RD', width: '10%' ,
field: 'UR', name: '$UR', width: '10%' ,
field: 'DL', name: '$DL', width: '10%',formatter: function(datum)
if(datum)
return dojo.date.locale.format(new Date(datum), selector: 'date', formatLength: 'long');
return '...';
,
field: 'RP', name: '', hidden: true
]
]"></div>
当我尝试运行此代码时遇到此错误,
dojo/parser::parse() error
Error: SyntaxError: syntax error in data-dojo-props='plugins:indirectSelection: true,nestedSorting: true, filter: closeFilterbarButton: true, ruleCount: 5, itemsName:
如何正确添加过滤器?有什么可以帮助我的
【问题讨论】:
【参考方案1】:您需要将songs
括在单引号中,而不是双引号中。作为data-dojo-props
的一部分,您已经嵌套在双引号中。
【讨论】:
感谢杰夫法语。我纠正了我的错误,它工作正常。以上是关于如何在增强网格中添加过滤器的主要内容,如果未能解决你的问题,请参考以下文章
dojo 增强网格过滤器 - 以编程方式设置列 A 大于某个数字
如何在 Ext JS Grid 3.2 的列标题中添加过滤器选择器
Unity3DUnity 组件 ② ( 删除 Light 组件 | 添加 Light 组件 | 构造物体组件 | 添加网格过滤器组件 | 添加网格渲染器组件 )