Check documentation for the latest version of dhtmlxSuite getFilterElementById DHTMLX Docs

getFilterElementById

returns the input object of the filter linked to the column in question by id

object getFilterElementById(string id);
idstringthe id of a column
objectthe input object of the filter linked to the column in question

Example

// get filter object placed in the header of the column with the "title" id 
var filterObject = myGrid.getFilterElementById("title");

See also
Change log

added in v5.2

Back to top