1. Code example of Grid with its siblings and parent element.
2. If possible, provide a working sample.
Regards,
Jayaprakash K.
<div id="Grid"></div> <script type="text/javascript"> $(function () { $("#Grid").ejGrid({ // the datasource "window.gridData" is referred from jsondata.min.js dataSource: window.gridData, allowPaging: true, dataBound:function(args){ this.element.removeAttr('tabindex') }, .. . ); $("#sampleProperties").ejPropertiesPanel(); function onSelectionTypeChange(args) { $("#Grid").ejGrid("cancelEdit"); $("#Grid").ejGrid("model.editSettings.rowPosition", args.selectedValue); } |