Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Raghu on Nov 06, 2008 22:31
open dhtmlx forum
Grid

Hi,
How to get the values for a particular column if we know the id of the column
Answer posted by Support on Nov 10, 2008 09:16
you can convert id to index as 
      grid.getColIndexById(id);
and use it later in grid.cells command
      var val = grid.cells(rowId,grid.getColIndexById(columnId));