Ability to catch and resend DOM messages which are grid scoped. #1022
Replies: 4 comments 1 reply
-
You can use the SlickGrid |
Beta Was this translation helpful? Give feedback.
-
Noticed you posted on StackOverflow too. I don't think there will be a generalised solution for all events because there would be some severe side effect from some events, eg mouse movements and scrolling, being piped through a round trip to a server. Also if an event is called multiple times you'd possibly need a queue structure for the parameters. It's a lot of extra complexity. |
Beta Was this translation helpful? Give feedback.
-
I'm aware of the issues you highlighted above. However, i just asked if does exists, in slickgrid a centralized point when one could handle slickgrid events. Improper usage of those events and side effects, is of course up to me. In the past i've done something similar to browser dom events applyed to single DOM nodes, and worked fine. |
Beta Was this translation helpful? Give feedback.
-
This is a question, not an issue, so I'm moving this to a Discussion. Also this question was asked twice by you on Stack Overflow with no answer most probably because it's not very clear. SlickGrid uses SlickEvent which are just class wrapper of JavaScript events and those are synchronous. You can stop the event by using regular You won't get much more information than what we already provided, if that doesn't work for you, well sorry but that is all there is. You also mentioned that you never took a look at the source code, well I think you should so that you can better understand how the project is running. The |
Beta Was this translation helpful? Give feedback.
-
Clear and concise description of the problem
Is there a way to handle all slickgrid messages in a centralized way by catching and killing them, and upon a specific event (a async callback or a specified interval of time for example) resend them ?
Basically i need to capture a specific event, saving all event informations, then issue an async call to a server method, and after got the response re-create the same DOM or slickgrid event and send it to the grid as if it was the original one.
Suggested solution
What i've asked
Alternative
No response
Additional context
No response
Validations
Beta Was this translation helpful? Give feedback.
All reactions