You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like function cellHeight(val) doesn't work properly on v0.5.3.
E.g.,
not able to auto resize height while resizing (Browser) Window, and
(re)assign height by calling this function (although the one in constructor $('.grid-stack').gridstack can set up height correctly)
However, it works fine after I downgrade to v0.5.2.
There should be something wrong for this version, but not sure if anyone has already find out the issue and prepare to fix it
Environment
Failed on v0.5.3
Success on v0.5.2
Steps to reproduce
I think it's easy to reproduce(?
Sorry for not familiar with jsfiddle. QQ
Simple example
Save following code as local .html file and open it with browser
Uncomment #L17 to see the difference
#L21 also shows the cellHeight(val) after init (constructor)
<html><head><linkhref="https://cdn.jsdelivr.net/npm/gridstack@v0.5.2/dist/gridstack.min.css" rel="stylesheet"></head><body><divclass="grid-stack"><divclass="grid-stack-item" data-gs-x="0" data-gs-y="0" data-gs-width="2" data-gs-height="2" style="background-color:red"><divclass="grid-stack-item-content">11111</div></div><divclass="grid-stack-item alert-success" data-gs-x="2" data-gs-y="0" data-gs-width="2" data-gs-height="2" style="background-color:green"><divclass="grid-stack-item-content _align_center">22222</div></div><divclass="grid-stack-item" data-gs-x="4" data-gs-y="0" data-gs-width="2" data-gs-height="2" style="background-color:blue"><divclass="grid-stack-item-content">33333</div></div></div><scriptsrc="https://code.jquery.com/jquery-3.4.1.min.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script><scriptsrc="https://cdn.jsdelivr.net/npm/gridstack@v0.5.2/dist/gridstack.all.js"></script><!-- uncomment next line to compare function `cellHeight(val)` between v0.5.2 and v0.5.3 --><!-- <script src="https://cdn.jsdelivr.net/npm/gridstack@v0.5.3/dist/gridstack.all.js"></script> --><script>$(function(){$('.grid-stack').gridstack({disableOneColumnMode:true,verticalMargin:0,cellHeight:'auto'});$('.grid-stack').data('gridstack').cellHeight(20);// change height after initialization});</script></body></html>
The text was updated successfully, but these errors were encountered:
Subject of the issue
Seems like function
cellHeight(val)
doesn't work properly onv0.5.3
.E.g.,
$('.grid-stack').gridstack
can set up height correctly)However, it works fine after I downgrade to
v0.5.2
.There should be something wrong for this version, but not sure if anyone has already find out the issue and prepare to fix it
Environment
v0.5.3
v0.5.2
Steps to reproduce
I think it's easy to reproduce(?
Sorry for not familiar with jsfiddle. QQ
Simple example
.html
file and open it with browser#L17
to see the difference#L21
also shows thecellHeight(val)
after init (constructor)The text was updated successfully, but these errors were encountered: