Hi Peter Stoev …
I for The method accepts 2 params – row index and column’s datafield I’ve already done, but the results are not as expected, this code that I created
to javascript
$("#jqxgrid").bind('cellselect', function (event) { var column = $("#jqxgrid").jqxGrid('getcolumn', event.args.datafield); var value = $("#jqxgrid").jqxGrid('getcellvalue', event.args.rowindex, column.datafield); var displayValue = $("#jqxgrid").jqxGrid('getcellvalue', event.args.rowindex, column.displayfield); $("#eventLog").html("Informasi Pelanggan : " + value); });
to body
<body class='default'> <div style="font-size: 20px; "margin-top: 20px; font-family: Verdana, Geneva, 'DejaVu Sans', sans-serif;" id="eventLog">Informasi Pelanggan : </div> <div>   </div> <div id='jqxWidget'> <div id="jqxgrid"></div> </div></body>
if there is something wrong or is there a solution for my problem ???