Hello N S,
Thank you for posting in the community.
You can get the cell value by using igGrid.getCellValue or igGrid.getCellText API methods.Attached you can find sample which demonstrates getting a selected row cell value.I wanted to ask you what you meant by parent rows? igGrid has flat structure and there is no parent row of the selected row. Are you referring to igHierarchicalGrid?
Best regards,Martin PavlovInfragistics, Inc.support@infragistics.com
Hi,
I have simple IgGrid from Ignit UI.
I am using below event when click on selected row of the grid to display details information.
$("#grid").on("iggridselectionactiverowchanged", function (evt, ui) {
var message = "Selected Row Clicked";
alert(message + ":------" + value.value);
});
Now How do I read the particular column values of the selected row?
Please help.