SmartClient 8.0
Firefox 4 and Chrome
/SmartClient_Explorer.html#layoutNesting
I've modified the Label "Listing" as
height: 100, minHeight: "100", maxHeight: "100",
this is a "trick" I use to make non-resizable, but collapsable, the layout.
If I use min and max heights expressed as integers, no problem.
but if expressed as strings, if I try to drag (instead of clicking) the resizeBar, it disappears.
I faced this problem because if I add minHeight and maxHeight in a xml ui layout, <isomorphic:XML> tags translates their values as strings in javascript.
as a workaround, I could enclose the values in a <JS> tag:
<minHeight><JS>100</JS></minHeight>
but unfortunately the visualbuilder strips out the <JS> tag
Firefox 4 and Chrome
/SmartClient_Explorer.html#layoutNesting
I've modified the Label "Listing" as
height: 100, minHeight: "100", maxHeight: "100",
this is a "trick" I use to make non-resizable, but collapsable, the layout.
If I use min and max heights expressed as integers, no problem.
but if expressed as strings, if I try to drag (instead of clicking) the resizeBar, it disappears.
I faced this problem because if I add minHeight and maxHeight in a xml ui layout, <isomorphic:XML> tags translates their values as strings in javascript.
as a workaround, I could enclose the values in a <JS> tag:
<minHeight><JS>100</JS></minHeight>
but unfortunately the visualbuilder strips out the <JS> tag
Comment