The filtercondition column property will only determine the filter condition of columns with filtertype of ‘textbox’ or ‘number’ – is there a way to change filtercondition for filtertype “list” ?
Alternately, how is filtercondition changed if the createfilterwidget function is employed ? When I use this everything works fine except I need to change filtercondition from default “Equals” to “contains”.
I unsuccessfully tried adding property searchmode:”contains” to the DropDownList widget in the following fragment:
createfilterwidget: function (column, htmlElement, widget) {
widget.jqxDropDownList({ displayMember: "label", valueMember:"value"
});
thanks!