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
105
WebDataGrid / WebHierachicalGrid - Row, Grid, Cell client side methods in IG15
posted

What are the (IG 15) replacement client-side methods for the following :

igtbl_getRowById
igtbl_getGridById
igtbl_getCellById 
.getCellFromKey 

Also, does anyone have a chart / page / info as to the various client side methods that v15 and v8 are using? We're trying to migrate from v8.3 to v15.x and the previous developers had worked on v8.3 so I'm not sure how they developed the site

Parents
No Data
Reply
  • 11095
    Offline posted

    Hello Sean,

    Thank you for contacting Infragistics!

    You can use $find("<grid-id>") to get the grid by id.

    Then from the grid object you can get the rows by calling grid.get_rows() method which will return you rows. 

    Then on rows you can call get_row(<index>) method to get the row by index.

    On the row you can call get_cell(<index>) to get the cell by index. 

    There is another method get_cellByColumnKey("<columnKey>") where you can get the cell by column key.

    You can also refer to our migration sheet.

Children
No Data