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.