我有以下配置,我在网格中加载数据所以我在过滤器中添加了日期选择器,但是一旦用户从日期选择器中选择它不是过滤器的值。任何帮助将不胜感激我不是确定我在哪里实施错误。
到目前为止尝试过代码..
config.js
getall: {
sortable: true,
scrollable: false,
editable: false,
filterable:{
extra: false,
operators: {
string: {
startswith: 'Starts with',
eq: 'Is equal to',
contains: 'Contains'
}
}
},
pageable: {
pageSizes: [10, 20, 30, 40, 50]
},
columns: [
{
field: 'cycStartDate',
title: 'Cycle Start',
width: '300px',
filterable: {
ui: function (element) {
'use strict';
element.kendoDatePicker({
format: 'yyyy-MM-dd'
});
},
operators: {
string: {
eq: 'Is equal to'
}
}
}
}
]
答案 0 :(得分:0)
我不确定它是否有帮助。
{
field: 'cycStartDate',
title: 'Cycle Start',
width: '300px',
filterable: {
extra: false,
operators: {
string: {
eq: 'Is equal to'
}
},
ui: function (element) {
element.kendoDatePicker({
format: 'yyyy-MM-dd'
});
}
}
}