Author Topic: how to keep ime-mode?  (Read 2225 times)

takao.sohara

  • Newbie
  • *
  • Posts: 5
    • View Profile
how to keep ime-mode?
« 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

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: how to keep ime-mode?
« Reply #1 on: April 23, 2020, 02:55:03 pm »
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

Code: [Select]
        editModel: {
            clicksToEdit: 1,
            onTab: 'nextEdit',
            pressToEdit: false         
        }