Our blazing fast Grid component built with pure JavaScript


Post by gregc »

I am calling

grid.store.load();

and it is triggering a readURL AJAX call but is incrementing the page number.

I am currently on grid-2021-01-20-next

Last edited by gregc on Tue Feb 02, 2021 6:31 pm, edited 1 time in total.

Post by mats »


Post by gregc »

Thanks, I can get around it by calling

grid.store.getById(theRowsId).someReadOnlyColumn='somevalue';

but I would much prefer to be able to call

grid.store.getById(theRowsId).load()

since why load entire page if you know which row changed


Post by mats »

Better temp workaround:

grid.store.loadPage(grid.store.currentPage)

Post by gregc »

nice, thanks!


Post Reply