-
Notifications
You must be signed in to change notification settings - Fork 181
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
Component going to infinite renders, if I update state in On Blur #230
Comments
Thx for the report @avp1598, |
|
https://codesandbox.io/s/fervent-khayyam-oqzfps?file=/src/App.js @nick-keller you'll notice: This seems like a bug. |
Is the |
By the way, I think it would be neat if the onBlur event had a newValue argument like onChange does. Would make it more robust in cases where onBlur is used to get the new state, like if getting the new table state with every keystroke is performance overkill. As it is, you'd have to sync from the spreadsheet controlled state variable onBlur, which is a problem if onBlur fires every time you sync to the table controlled state. Thanks! Also: Pasting into the datasheet (incl. clicking in and out) does not trigger an onBlur event, right? Should it? |
Sandbox: https://codesandbox.io/s/cool-platform-8083xp?file=/src/App.js |
@nick-keller any updates on this yet? Thank you! |
On Blur event keeps getting triggered infinitely if some state is changed in on blur callback
I have checked all useEffects and everything, the problem is with the component itself. Just the onBlur event being called infintely and for any type of cell update.
I am using a dynamicDatasheet as I need the columns to be dynamic
The text was updated successfully, but these errors were encountered: