This commit is contained in:
Roly Rudy Gutierrez Pinto
2017-01-24 14:21:26 -04:00
parent 84bda68cdd
commit 46cd8405ef
4 changed files with 48 additions and 38 deletions

View File

@@ -373,6 +373,7 @@
}
return actionTranslate;
};
var pageSize = 25;
var processesGrid = new Ext.grid.GridPanel({
region: 'center',
layout: 'fit',
@@ -487,7 +488,7 @@
}
],
bbar: new Ext.PagingToolbar({
pageSize: 10,
pageSize: pageSize,
store: store,
displayInfo: true,
displayMsg: _('ID_DISPLAY_PROCESSES'),
@@ -515,7 +516,7 @@
}
}
});
processesGrid.store.load({params: {"function":"languagesList"}});
processesGrid.store.load({params: {"function": "languagesList", "start": 0, "limit": pageSize}});
processesGrid.store.on(
'load',