ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: jakobs1 on December 28, 2022, 05:06:19 pm

Title: Can't get backspace key to work when editing a cell
Post by: jakobs1 on December 28, 2022, 05:06:19 pm
Is there something I'm missing. I see that it is working in the demo but not in my code
Title: Re: Can't get backspace key to work when editing a cell
Post by: paramvir on December 28, 2022, 10:24:25 pm
Have you implemented a custom key event handler anywhere in your code.
Title: Re: Can't get backspace key to work when editing a cell
Post by: jakobs1 on January 02, 2023, 06:29:47 pm
No I have not
Title: Re: Can't get backspace key to work when editing a cell
Post by: paramvir on January 02, 2023, 06:54:56 pm
Try to use different editors i.e., "textbox", "textarea", "contenteditable". Kindly share a jsfiddle if not able to resolve it.
Title: Re: Can't get backspace key to work when editing a cell
Post by: jakobs1 on January 03, 2023, 02:26:31 am
Thank you. Got it to work after adding
editor: { type: 'textbox'} to the colModel.
Was not aware of that was required.