After utilizing Ext.js 4.2, I noticed that adding a new record to the store dynamically updates my grid immediately with just this simple line of code:
me.getStore().insert(0, rec);
However, upon using Extjs 6.2, I found that while the new record is added to the store, it does not display in the grid right away. Consequently, I am curious if there is a method to add a new record to the store dynamically and have it instantly reflected in the grid within Ext.js 6.2? Thank you for your assistance!