Hi!

In ExtJS 4.2.1 I am using bindStore() to bind alternating data stores to a paging toolbar. This works partly only. The numbers in the paging toolbar do not update and do not reflect the change. When calling load() on the data store directly after bindStore() the numbers are updated (but I do not want to load new data most times so the paging toolbar remains confused very often).


Currently I am using the following code line as a workaround to refresh the paging tool numbers (where 'this' is the store passed to bindStore()):



Code:



this.fireEvent('load', this, this.records, true);

It seems to me that someone forgot some internal update call in bindStore(). Is this true? Is there a better way to work around this?