Skip to content
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

onBlur firing twice if autoAddRow = true on DynamicDataSheetGrid #145

Open
ajboni opened this issue Apr 6, 2022 · 2 comments
Open

onBlur firing twice if autoAddRow = true on DynamicDataSheetGrid #145

ajboni opened this issue Apr 6, 2022 · 2 comments
Labels
bug Something isn't working

Comments

@ajboni
Copy link

ajboni commented Apr 6, 2022

If autoAddRow = true and you are on the last row, once you press enter to confirm edit and auto-create new row, the onblur callback is called twice.

 <DynamicDataSheetGrid
        ref={gridRef}
        value={data}
        onChange={setData}
        onBlur={() => {
          console.log("blur");
        }}
        columns={columnsMemo}
        autoAddRow
/>

If I instead use <DataSheetGrid/> the issue does not occurs.

@nick-keller
Copy link
Owner

Hey @ajboni, thx for the repport, I will have a look into it

@nick-keller nick-keller added the bug Something isn't working label Apr 21, 2022
@larissa-n
Copy link

Related to #230. Looks like the way onBlur is implemented is not based on cells' or elements' onBlur events but via useEffect in such a way that any table change will also trigger the provided onBlur function.

Thanks @nick-keller for looking into this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants