I have an AG GridAG Grid with cells that contain very small highly precise numbers - eg 0.002957399184
I want to implement a way to allow users to edit these numbers easily and accurately - basically want to avoid fiddling around trying to select using the cursor where you want/what you want to change.
I tried using a cell renderer which just consisted of an input type number element<input type="number" /> but that only allows increments of a predefined step and wethey might want to hadadd 0.1 or 0.001 for example.
Anyone have any ideas of what Ihow could implement toI tackle this?
Tried to use input type number but its very limited