Friday, April 15, 2011

refresh a page in extjs

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

From stackoverflow
  • 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()
    
  • i also fix it by

    store.reload();

0 comments:

Post a Comment

Note: Only a member of this blog may post a comment.