Retrieve Value from Hidden Column

How do we hide the column of all rows using XML code for DHTMLXGrid. Also,how do we retrieve value from that hidden column?


>>How do we hide the column of all rows using XML code
If you are using dhtmlxgrid 1.6 you can specify visibility as part of grid config directly in XML






Sales
<column width=“150” type=“ed” align=“left” color="#d5f1ff" sort=“str” hidden=“true”>Book Title




Value can be retrievent in common way


var value = grid.cells(i,j).getValue();
i - row id
j - column index
This works for all columns, including hidden ones.


Thanks!