My grid is defined by:
$(
'#formGrid'
).kendoGrid({
dataSource: [
{ FormDesc:
'hello'
, FormID: 1, IsEnabled:
true
},
{ FormDesc:
'two'
, FormID: 2, IsEnabled:
false
}
]
, columns: [
{ field:
'FormDesc'
, title:
'Form Name'
, width: 140 },
{ field:
'IsEnabled'
, title:
'Enabled'
, width: 40 }
]
, filterable:
true
, resizable:
true
, scrollable:
true
});
If a user filters the column on Enabled the grid never returns. This appears to be caused by the boolean value of IsEnabled.
You can see this in the following jsfiddle: http://jsfiddle.net/berandorFiddle/wYQy2/1/
An obvious workaround is to convert my boolean to a string. Is there a more elegant way to work around this?