Missing events in custom dstore using WebSocket and dgrid
Asked Answered
O

1

43

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?

Opalopalesce answered 22/7, 2016 at 10:15 Comment(5)
Can you host a functioning example somewhere ? It needs some debugging to be able to help youBorgeson
Unfortunatellly I cant. But I have craeted README on the github with install instructions. It is easy and quick :)Opalopalesce
Maybe your guess is correct. But the pagination is a server side functionality where the delete event which triggers for all rows may not be bound to the records in third/ future page elements.. try to render the grid for every page navigationAlienism
@ABUdhay This could help, but I'd like to know how to properly write dojo Store so It works well with datagrid.Opalopalesce
Try sort function this.inherited(arguments) as this.inherited("sort", arguments);Merryman
K
1

dstore provides a flexible selection of stores out of the box, but sometimes, it is necessary to create a custom store to better suit the needs of an application. This is a tutorial for doing just that. For our example, we create a store around the GitHub API v3 for Gists.

http://dstorejs.io/tutorials/custom_stores.html

Karney answered 10/11, 2016 at 11:40 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.