Pages

Wednesday, January 5, 2011

ExtJS -=- NaN in PagingToolbar

Hi!

If you got a NaN of 1 in Ext's paging toolbar, you must add start: 0 and limit: 25 when you load your store. For example:

documentTypeI18nElementsStore.reload({
     params:{
          start: 0,
          limit: 25
     }
});