I am using MVC.
I am having some difficulty in creating a filter for a column 'Name' where startswith 0-9
Above is abbrieviated....
Basically i have a text field 'Name' and i need to show any record that starts with 0-9.
Seems like no matter which way i phrase the filter, the filter on the DataSourceRequest never haves more that two filters (CompositeFilter).
Any help would be great. thanks. Logically i know i could have ten colums and filter by all ten columns for some value so my feeling is internally it is grouping by "Name" b/c the demos only support two filters per column.
-Trent
I am having some difficulty in creating a filter for a column 'Name' where startswith 0-9
grid.dataSource.filter([
{ field:
"Name"
, operator:
"startswith"
, value:
"0"
},
{ field:
"Name"
, operator:
"startswith"
, value:
"2"
},
{ field:
"Name"
, operator:
"startswith"
, value:
"3"
},
{ field:
"Name"
, operator:
"startswith"
, value:
"4"
},
{ field:
"Name"
, operator:
"startswith"
, value:
"5"
}
]);
Basically i have a text field 'Name' and i need to show any record that starts with 0-9.
Seems like no matter which way i phrase the filter, the filter on the DataSourceRequest never haves more that two filters (CompositeFilter).
Any help would be great. thanks. Logically i know i could have ten colums and filter by all ten columns for some value so my feeling is internally it is grouping by "Name" b/c the demos only support two filters per column.
-Trent