Check documentation for the latest version of dhtmlxSuite collectValues DHTMLX Docs

collectValues

gets all possible values of a column

array collectValues(number column);
columnnumberzero based index of column
arrayan array of all possible values of a column

Example

//collect possible values in the 2nd column
var values=myTreeGrid.collectValues(1);

Back to top