We are currently in the process of transitioning our application from GWT to angular. Within our application, we have implemented an editable grid feature.
One method for making the grid editable is to use a separate editor for each cell. However, this approach causes a simple page with 4 columns and 100 rows to take 2000 ms to render.
On the other hand, another approach involves using only a single editor within an absolute div and positioning this div on the selected td. Although this may require dome calculations which are restricted in angular, it significantly reduces rendering time to just 500ms.
Being new to angular, I am seeking advice on which approach would be most suitable for our needs.