Удаляю строку в гриде через actioncolumn вот так:
{
xtype: 'button',
iconCls: 'x-fa fa-close',
handler: function(grid, rowIndex, colIndex) {
//get store
var store = grid.getStore();
//get current record by row index
var rec = store.getAt(rowIndex);
//delete (autosync do all job)
store.remove(rec);
}
}
Но итоговое количество в pagingtoolbar остается прежним. Какое-то событие надо вызывать его обновления?