I am trying to create custom Store, which should use WebSocket or REST (in case of WebSocket failure).
Code file rachet-store.js
It works almost perfectly. It works without problems with the REST also (myRest).
Problem is if the wsStore is used and If i delete a row on first or second page in the datagrid, the datagrid is notified and refresh itself. But if I delete a row on the third or any other page, the store is not refreshed.
I think the problem could be somewhere with the sort()
, because using that how the Grid (or Pagination) works. (But its just a guess ...)
So, the question is, what did I do wrong?
this.inherited(arguments)
asthis.inherited("sort", arguments);
– Merryman