Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Steve on Jan 08, 2008 10:13
open dhtmlx forum
How to retrieve selectedIndex of coro

How to retrieve selectedIndex of coro
Answer posted by Support on Jan 09, 2008 04:40
API allows to get selected value by
    var value = grid.cells(i,j).getValue()
it can be converted to index in next way
    var index = grid.getCombo(j).keys._dhx_find(value);

where
       i - row id
       j - column index