I want to integrate icon in jqxgrid (view more details icon), and how to get value from grid..
here my code is..
{ text: ‘Source’, datafield: ‘lcms_source’, pinned: true, width: ‘26%’,sortable:true, filtercondition: ‘starts_with’, editable:false,
cellsrenderer :function (row, columnfield, value, defaulthtml, columnproperties) {
var dataRecord = $(“#jqxgrid”).jqxGrid(‘getrowdata’, row);
return ‘<span id=”” style=”margin: 4px; float: ‘ + columnproperties.cellsalign + ‘;”>’ + value + “</span><input type=’image’ src=’images/add-button.png’ onClick=’buttonclick(value)’ class=’add_button’ id=’viewsource’ style=’float:right;margin-right:10px;’>”;
}
},
how to get value from grid ..
Thanks,
Muthu