I have a grid that accepts number inputs only, and I work with a lot of non-whole numbers.
I want to be able to begin editing of cells with a press of ‘.’ and to have that decimal already be typed in the box.
Currently I have to type ‘0.’ to get there, and it’s a bit awkward. The closest I’ve been able to get to what I want is to look for charCode 110 in my handlekeyboardnavigation function, but from there I’m only able to get it to start editing, but with no . in the box. This way I have to press . twice in a row and that’s even more awkward.
any help would be appreciated