ParamQuery grid support forum
General Category => Bug Report => Topic started by: takao.sohara on April 20, 2020, 06:23:10 pm
-
Param query version is using 6.2.4.
In the cell of the grid, ime-mode becomes English when I move to the next cell in the tab with Japanese input.
For example, if you enter Japanese "あ", "a" will be entered.
You can input in Japanese from the following characters.
I can't input Japanese continuously.
How do you set the input mode?
Thanks
-
There is no fix for unicode characters currently w.r.t editModel.pressToEdit
Workaround is to put the cell in edit mode when it's focused or tabbed by using editModel.clicksToEdit: 1 and editModel.onTab: 'nextEdit'
https://stackblitz.com/edit/paramquery-demo-unicode?file=index.js
editModel: {
clicksToEdit: 1,
onTab: 'nextEdit',
pressToEdit: false
}