-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Layout Breaks When Loading in Smaller Breakpoints #2947
Comments
you're doing nested grids here, I was going to say loading a 12 column layout into smaller size DOES remember the full layout (to go back to). but frankly I have not tested this with nested grids... |
@adumesny are there any pointers that you would like to provide on how to solve this issue |
Not that I can think of without debugging it. You can also donate to get it fixed. A lot of nested features were sponsored as I don't use it at work... |
Hey @adumesny . I noticed this issue was occurring in both normal and nested grids. I've submitted a fix in PR #2949 that addresses this by ensuring the grid resizes appropriately for the current screen breakpoint during initialization. Please take a look when you have a chance. Let me know if you need any clarification or have suggestions for improvements. Screen.Recording.Feb.17.2025.mp4 |
if it happen with normal gid, then it's a simpler fix that used to work, so please post an example so I can take a look... |
Hey @adumesny |
Hey @adumesny I would really like to help to close this issue please do share any pointers that you could think of to solve this Thank You ! Example : https://codesandbox.io/p/sandbox/gridstack-breakpoint-test-twzq7j Area.mp4 |
ok, so you're saying loading into 8 is not the same as going 12->8, which I guess it should be. BUT when going 12 -> 8 -> 6 it MAY not be the same as loading into 6 because it uses layout 8 to create 6 so incrementally looks more natural when YOU are inreacting with the design - depending on what reflow option you choose it may not be the same. Also layout:'list' will not resize the items (unless it has to) and keep the order the same (you test should have 0-n content, and skip all the noResize/noMove options to simplify. I'm not debugging your app, so make it dead simple demo.... |
Yes @adumesny that is the problem Sorry @adumesny I am not able to understand This is codesandbox has a very simple example which is based out of the https://codesandbox.io/p/sandbox/gridstack-breakpoint-test-twzq7j |
this shows the issue, at 1/5th the code size... <!DOCTYPE html>
<head>
<title>Responsive column</title>
<link rel="stylesheet" href="demo.css"/>
<link rel="stylesheet" href="../dist/gridstack-extra.css"/>
<script src="../dist/gridstack-all.js"></script>
</head>
<body>
<h1>Responsive: load into smaller size</h1>
<span>Number of Columns:</span> <span id="column-text"></span>
<div class="grid-stack">
<script type="text/javascript">
let children = [ // our initial 12 column layout
{x: 0, y: 0, w: 12},
{x: 0, y: 1, w: 3},
{x: 3, y: 1, w: 3},
{x: 6, y: 1, w: 3},
{x: 9, y: 1, w: 3},
];
children.forEach((n, i) => {n.id = i; n.content = String(i)});
let grid = GridStack.init({
cellHeight: 80,
columnOpts: {
breakpoints: [
{ c: 8, w: 1200 },
{ c: 6, w: 996 },
{ c: 3, w: 768 },
{ c: 1, w: 480 },
],
layout: "list",
},
children})
.on('change', (ev, gsItems) => text.innerHTML = grid.getColumn());
let text = document.querySelector('#column-text');
text.innerHTML = grid.getColumn();
</script>
</body>
</html> |
Hey @adumesny Line 944 in 2b63bab
where inside the constructor initially we dont have the gs engine if we call this function |
yes, but this is only part of the problem. a full relayout from 12 (or max column) to actual using the responsive layout still needs to happen during init, without creating widgets at 12 - not as trivial as it sounds and why your review is incorrect (inefficient). |
Hey @adumesny, Is there something we can temporarily add on the app side to regenerate the grid when the app is loaded on a smaller screen, until we have a proper fix in the Gridstack repo? |
you could try loading it with responsive disabled, then adding it and may need to call something (a resize or such) to force it to relayout... a proper fix is not trivial and I'm super busy, so not sure when I will get to it. If you want to sponsor it I can take a look sooner... |
Hey @adumesny I am running this funtionon my side code as soon as I do Please do let me know if there is a better way to do this would be really helpfuil
Example of it
Thank You ! |
you got it. |
Description
When initializing the GridStack layout in a larger breakpoint (e.g.,
lg
), the grid properly relayouts itself when resizing to a smaller breakpoint likemd
. However, if the user loads the page directly in a smaller breakpoint (md
), the layout appears broken, with widgets not positioned as expected.Steps to Reproduce
lg
).md
) – layout adjusts correctly.md
breakpoint – layout appears broken.Expected Behavior
The grid should correctly initialize in smaller breakpoints without requiring a resize from a larger breakpoint.
Screenshots / Video
Example video showcasing the issue:
Screen.Recording.Feb.15.2025.mov
Reproduction Code
CodeSandbox for reference:
https://codesandbox.io/p/sandbox/gridstack-breakpoint-test-twzq7j
Additional Context
Would love to hear your thoughts on this! Thanks for the great work on GridStack! 🚀
The text was updated successfully, but these errors were encountered: