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

UI bug when collapsing and resizing a region #6451

Open
marciogurka opened this issue Mar 23, 2023 · 0 comments
Open

UI bug when collapsing and resizing a region #6451

marciogurka opened this issue Mar 23, 2023 · 0 comments
Labels
bug Something isn't working forum Issues from forum large-account Reported by large customer

Comments

@marciogurka
Copy link

marciogurka commented Mar 23, 2023

Forum post

Using the following example

new Grid({

    appendTo   : 'container',
    // makes grid as high as it needs to be to fit rows
    autoHeight : true,

    features : {
        // enabled region resize
        regionResize : true
    },

    data : DataGenerator.generateData(5),

    columns : [
        { field : 'firstName', text : 'First name', width : 150, region : 'left' },
        { field : 'surName', text : 'Surname', width : 150, region : 'right' },
        { field : 'city', text : 'City', flex : 1, region : 'right' },
        { field : 'team', text : 'Team', flex : 1, region : 'right' },
        { field : 'score', text : 'Score', flex : 1, region : 'right' },
        { field : 'rank', text : 'Rank', flex : 1, region : 'right' }
    ]
});

You'll have the following grid displayed.

Screenshot 2023-03-23 at 12 09 36

follow these steps...

  1. Drag the region splitter to the right (which is a bit difficult as the splitter doesn't quite follow the mouse drag) so that some of the columns cannot be seen (a scrollbar appears as expected).
  2. Collapse the region to the right by clicking the > arrow on the splitter, so the entire right-side region disappears.
  3. Expand the region again by clicking the < arrow on the splitter
  4. Drag the splitter to the left to see more of the right-hand region.
@marciogurka marciogurka added bug Something isn't working forum Issues from forum large-account Reported by large customer labels Mar 23, 2023
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 large-account Reported by large customer
Projects
None yet
Development

No branches or pull requests

1 participant