ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: Akihiro Inoue on August 15, 2017, 12:33:45 pm

Title: Special character entry during Tab Operation
Post by: Akihiro Inoue on August 15, 2017, 12:33:45 pm
Dear Team,

I am unable to type the following keys on tab mode.

{}[]\|"':;?/>.<,

but can able to enter when click and enable the text field in case of text editor.Any help please.
Title: Re: Special character entry during Tab Operation
Post by: paramvir on August 15, 2017, 05:12:22 pm
only alphanumeric keys invoke the edit mode in cells currently.

I understand your need to customize it; ability to customize the keys has been added in the upcoming version.

Meanwhile you can use the same approach mentioned in previous post. https://paramquery.com/forum/index.php?topic=2219.0

Code: [Select]
cellKeyDown: function(evt, ui){

if(evt.keyCode == desired keyCode){
if(this.isEditableRow(ui) && this.isEditableCell(ui)){
this.editCell(ui);
}
return false; //to prevent default behavior of page down.
}
},