當數(shù)據(jù)源變更后,重新加載數(shù)據(jù):

1,可以重新創(chuàng)建grid,不過這種比較慢 。
2,gridName.store.proxy = new Ext.data.HttpProxy(
    {
        url:'/....'
    }
) ;
    gridName.store.load() ;


Grid變更后驗證:
gridName.on('afteredit',function(e){
       e.row;                 //編輯的行
       e.column;            //編輯的列
       e.originalValue;    //編輯前的值
       e.value;                //編輯后的值
       

       ........
    });