I take your example from here:
http://www.jeasyui.com/demo/main/index.php?plugin=PropertyGrid&theme=default&dir=ltr&pitem=and add an onBeforeEdit event, which returns false:
<table id="pg" class="easyui-propertygrid" style="width:300px" data-options="
url:'propertygrid_data1.json',
method:'get',
showGroup:true,
scrollbarSize:0,
onBeforeEdit: function(rowIndex, rowData) {
return false;
}
">
This causes the following error:
Uncaught TypeError: Cannot read property 'target' of undefined jquery.easyui.all.js:12695
Is there something wrong with my code or is this an error in the library?
cu Christian