- 注册时间
- 2017-5-9
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 56
- 精华
- 0
- 帖子
- 4
|
版主大大你好,我在使用JS设置动态列的Filter功能时遇到了问题,麻烦你帮我看看吧。我想要的效果就是这样:
现在使用JS来设置:
- { field: "age", width: 100, headerAlign: "center", allowSort: true, header: "年龄", editor: { type: "spinner"} ,filter:{type:"filteredit",width:"100%",data:"ageFilters" } }
复制代码 或者这样设置:
- { field: "age", width: 100, headerAlign: "center", allowSort: true, header: "年龄", editor: { type: "spinner"} ,filter:{type:"filteredit",width:"100%",filterData:"ageFilters" } }
复制代码
然后还有data的值:
- var ageFilters = [{ text: '大于', value: '>' }, { text: '小于', value: '<' }, { text: '等于', value: '=='}];
复制代码 可是始终都不会出来选择项啊。
到底要怎么设置呢?
|
|