Author Topic: Special character entry during Tab Operation  (Read 1650 times)

Akihiro Inoue

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 32
    • View Profile
Special character entry during Tab Operation
« 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.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: Special character entry during Tab Operation
« Reply #1 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.
}
},