-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add props for all grid events #12
Comments
@scamden all of them? Would you prefer to be passed a dictionary prop, like... {
on-grid-cell-scroll: () => { console.log('why not?') },
... or have each event be handled as a separate prop handler? Also where do you handle/fire scroll events? |
Also, are these the only events fired? I was expecting to see some scrolling events in here... |
the standard way react does events is with separate props so i was thinking it best to just mirror that. it's not too hard anyway just need to get to it. and no those are not the only events. try looking at the |
btw @jontg i mentioned to alex but for now the workaround to this is to use a ref to get the grid instance, and do |
Aha, yeah I noticed that |
aka
on-grid-cell-scroll
etcThe text was updated successfully, but these errors were encountered: