Hello,
I would like to get the row value, column value and cell value of grid view in javascript .
Please can someone help on this
Regards
Tulsi
Hello Tulsi,
Thank you for contacting Infragistics:
I recommend you take a look at our CSOM documentation as it goes over the client side members and their methods:
http://es.infragistics.com/help/aspnet/webdatagrid~infragistics.web.ui_namespace
http://es.infragistics.com/help/aspnet/webdatagrid~infragistics.web.ui.gridrow_members
http://es.infragistics.com/help/aspnet/webdatagrid~infragistics.web.ui.gridcell_members
For example to get a row, cell, and column you would do the following:
var grid = $find("<%=WebDataGrid1.ClientID %>");var rows = grid.get_rows();var rowByIndex = rows.get_row(0);var cellByKey = rowByIndex.get_cellByColumnKey("Value");var cellValue = cellByKey.get_value();var column = cellByKey.get_column();