You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the Svelte wrapper for Grid.js. It seems that the events "beforeLoad", "load", "ready" events are not being emitted anywhere whereas "rowClick" and "cellClick" are.
It seems to work correctly in this example but not in my implementation. Also, if I search the master grid.js repository src/ for these events, there are no references to it other than in src/view/events.ts. "rowClick" on the other hand, is being used in src/view/table/tr.tsx:
36 | config.eventEmitter.emit('rowClick', e, props.row);
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am using the Svelte wrapper for Grid.js. It seems that the events "beforeLoad", "load", "ready" events are not being emitted anywhere whereas "rowClick" and "cellClick" are.
I tried the example here: https://svelte.dev/playground/318d3daa2ed2402cbeb965f7317c1071?version=5.22.1
It seems to work correctly in this example but not in my implementation. Also, if I search the master grid.js repository src/ for these events, there are no references to it other than in src/view/events.ts. "rowClick" on the other hand, is being used in src/view/table/tr.tsx:
36 | config.eventEmitter.emit('rowClick', e, props.row);
Are these events just not being used?
Beta Was this translation helpful? Give feedback.
All reactions