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

when editing cell, editing doesn't end when click outside of the grid. #4364

Closed
taauntik opened this issue Mar 14, 2022 · 0 comments
Closed
Assignees
Labels
bug Something isn't working forum Issues from forum OEM OEM customer premium resolved Fixed but not yet released (available in the nightly builds)
Milestone

Comments

@taauntik
Copy link

Forum post

Demo page: https://www.bryntum.com/examples/grid/basic/

Modify Grid settings as follows:

  1. Add following to the Grid features-object:
cellEdit: {
    autoSelect: true,
    triggerEvent: 'cellclick',
},
  1. Add static height to the Grid (500 px)
height: 500
  1. Generate only 1 row in the test page:
data : DataGenerator.generateData(1)

So the final code should look like this:

new Grid({

    appendTo : 'container',

    features : {
        group : false,
        cellEdit: {
          autoSelect: true,
          triggerEvent: 'cellclick',
        },
    },
    height: 500,

    // Other settings
    
    data : DataGenerator.generateData(1)
});

Now edit a cell, click on the empty area below, the editing doesn't end, nothing happens.

@taauntik taauntik added bug Something isn't working premium forum Issues from forum OEM OEM customer labels Mar 14, 2022
@isglass isglass added this to the 5.0.x milestone Mar 14, 2022
@JockeLindberg JockeLindberg self-assigned this Mar 14, 2022
@JockeLindberg JockeLindberg added in progress ready for review Issue is fixed, the pull request is being reviewed resolved Fixed but not yet released (available in the nightly builds) and removed in progress ready for review Issue is fixed, the pull request is being reviewed labels Mar 14, 2022
@SergeyMaltsev SergeyMaltsev modified the milestones: 5.0.x, 5.0.2 Apr 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working forum Issues from forum OEM OEM customer premium resolved Fixed but not yet released (available in the nightly builds)
Projects
None yet
Development

No branches or pull requests

4 participants