Abisha
Abisha

Reputation:

refresh a page in extjs

How can i refresh grid data when new data added in exts?

Upvotes: 3

Views: 11157

Answers (3)

John Moses
John Moses

Reputation: 1283

reload is depreciated in js ext 4. use load() for js ext 4.

Upvotes: 1

Abisha
Abisha

Reputation:

i also fix it by

store.reload();

Upvotes: 1

Adam Dziendziel
Adam Dziendziel

Reputation: 925

It depends on how you add the new data, if it happens on the server and you want to refresh an Ext JS view:

grid.getStore().reload()

Upvotes: 1

Related Questions