Hello ParamQuery Experts,
I have following code to perform function call when a Row is selected on Grid and I am noticing that this event is getting triggered twice... kindly help me what am I missing and how to resolve this issue.
$(grid).on("pqgridrowselect" , function(event, ui) {
var rowno = ui.rowIndx;
Value = ui.dataModel.data[rowno][1];
RefreshChildGrid();
});
I appreciate any help & guidance.
Regards,
Sidads