I have an AG Grid with cells that contain very small highly precise numbers - eg 0.002957399184
I want 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" /> but that only allows increments of a predefined step and they might want to add 0.1 or 0.001 for example.
Anyone have any ideas of how could I tackle this?