Skip to content

Replies

0
Charudatta JAwale
Charudatta JAwale answered on Jul 10, 2014 3:21 PM

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.