ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: rsgmedia on December 19, 2016, 03:53:20 pm
-
We want to disable copy/paste for columns in grid which are of select type. Right now we are using pasteModel which is applying to entire grid.
Is there any option to achieve it.
-
I don't see any option to do that. I've added this to the feature request list.
-
Columns can be made uneditable selectively in beforeValidate event.
beforeValidate: function(evt, ui){
if( ui.source === 'paste' ){
var column = this.getColumn({ dataIndx: 'dataIndx_of_column' });
var old_val = column.editable;
column.editable = false; //make in uneditable during paste.
this.one('change', function(){
column.editable = old_val;
});
}
},
Hope this helps.