Our blazing fast Grid component built with pure JavaScript


Post by gregc »

If I want to refresh a single record in the grid, right now I just set a field to some value

store.getById(3764814).somefield='';

this triggers the updateUrl to be called and the record to be refreshed.

This is fine but is there a better way to refresh the record, like

store.getById(3764814).reload();
Last edited by gregc on Mon Jan 11, 2021 7:18 pm, edited 2 times in total.

Post by mats »

This is fine but is there a better way to refresh the record, like

You mean you want to manually reload the store? Just call 'load' on the store?


Post by gregc »

Right but i dont want to reload the entire store, only the one record i know changed


Post by pmiklashevich »

It's not supported out of the box. To sync record it has to be modified. See https://www.bryntum.com/docs/grid/#Core/data/Model#property-isModified

Pavlo Miklashevych
Sr. Frontend Developer


Post Reply