I am using editor and template to display column as text. But the actual values of the column is integer. When doing filter on this column, I want to use text.
I am using the Grid Filtering with Dynamic Default Values to achieve that. But I want the operators only show "Starts with", not "equal to" and only 1 operator (no need for "AND". How can I achieve that?
var divData = [{ "value": 1, "text": "Owned" }, { "value": 2, "text": "Managed" }];
{ field: "DivisionID", title: "Division", values: divData, attributes: { style: "text-align:left" }, width: "150px", editor: divDropDownEditor, template: "#=getDivName(DivisionID)#" },
Thanks.