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.
Can you re-post the sample code? I downloaded the zip file, but only see a HTML file in the zip file.
Min Zhao
Hello N S,
Attached you can find sample which demonstrates how to get selected cell of a child grid as well as a cell from its parent row.
Do not hesitate to ask if you have any additional questions.
Best regards,Martin PavlovInfragistics, Inc.support@infragistics.com
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?