For the columns property, I want to enable Filter on each column and set the DEFAULT VALUE of the filter.
Example, for First and Last columns in grid I want the default value of the filter for the column to be “John” and “Smith”
I have this code:
columns: [
{text:'First, hidden: true, filtertype: 'textbox' },
{text:'Last', width:100, filtertype: 'textbox'}
]
Am looking for something like:
columns: [
{text:'First', filtertype:'textbox', DEFAULT_FILTER_VALUE:'John'},
{text:'Last',filtertype: 'textbox', DEFAULT_FILTER_VALUE:'Smith'}
]