I want to have a similar action as in the example where you have an edit popup window but I want to click on an image rather then an edit button in a grid cell. I do have a cellsrenderer function as follow:
var actionrenderer = function (row) {
return ‘
‘;
};
and I have similar function which have the following code:
var buttonaction = function (row) {
$(“#popupWindow”).jqxWindow(‘show’);
};
as well as the rest to display the edit window. I tried many variations of the renderer function without any success.
I will appreciate any help.