Hello and thanks in advice
i’m using versione 3.0.4
i’m having a unwanted behaviour using the above grid definition.
the copy text operation has to be active (enablebrowserselection: true)
the edit functionality has to be blocked (editable: false)
but if i hit Ctrl-X on the grid the row still disappear
How can i disable ctrl-x ?
Fabio
$(“#jqxgrid”).jqxGrid({
width: 980, height: 590, rowsheight: 20//, autoheight: true , filterable: true
, source: dataAdapter
, sorttogglestates: 1
, rendergridrows: function (args) { return args.data; }
, localization: getLocalization()
, theme: ‘sfeblu’
, columns: colsCliSet
, columngroups: colsGroup
, pagesize: 25
, pagesizeoptions: [’25’, ’50’]
, filterable: true
, sortable: true
, pageable: true
, virtualmode: true
, editable: false, enablebrowserselection: true
, enabletooltips: true
, columnsresize: true
, altrows: true
, showsortcolumnbackground: false, showpinnedcolumnbackground: false
, showfiltermenuitems: false, showfiltercolumnbackground: false
, autoloadstate: false, autosavestate: false
, autoshowloadelement: true
, showfilterrow: false
, rendered: function () { setDefQrtInDd(crrqrt()); ForceHideWait(‘DivWaitGrd’); }
});