Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1380
Grids checkbox column
posted

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.

Parents
No Data
Reply
  • 2145
    Verified Answer
    Offline posted

    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.

     

Children
No Data