Hi,
There are grid with two column.First checkbox column,secon dropdownlist.
I need to get second column value which checkbox is checked.
Thanks in advance.
Should be a simple case of looping down the grid until the value of the check box is true.
i.e.
For each urow in mygrid.rows
if urow.getcellValue("CheckboxColumn") = true then
msgbox(urow.getcellvalue("MyListboxColumn))
end if
next
Looping in the grids in infragistics I have found to be really quick, even with alot of data.