ExtJs Gridpanel store refresh

后端 未结 10 1234
刺人心
刺人心 2020-12-28 14:08

I am binding ExtJs Gridpanel from database and add \"Delete\" button below my gridpanel. By using the delete button handler, I have deleted selected record on gridpanel. But

10条回答
  •  伪装坚强ぢ
    2020-12-28 14:29

    Refresh Grid Store

    Ext.getCmp('GridId').getStore().reload();

    This will reload the grid store and get new data.

提交回复
热议问题