How to Get the Filter Input on Kendo Grid -


i have kendo grid this:

var grid = diffgrid.kendogrid({     autobind: false,     filterable: true,     pageable: true,     resizable: true,     sortable: true,     columns: [          {              field: "first name",              title: "first name"          }, {              field: "last name",              title: "last name"          }     ] }).data("kendogrid"); 

how can user input in filter input textbox on either "first name" or "last name" column?

i think got it:

grid.datasource.filter().filters[0]


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -