savsw
12 Sep 2010, 10:51 PM
Hi,
The portal has three columns. You can change column width.
When you add extra widgets into the column, the height of the element that you use to change the width of the column is not updated. The height of the portal itself is updated correctly (vertical scroll appears).
Look at the attachment.
22353
When I see via firebug, I can see that the element's height style is set to some definite value
<div id="portal_col_0-xsplit" class="x-layout-split x-layout-split-west x-splitbar-h" style="left: 510px; top: 0px; height: 401px;"> </div>
I tried to set it as:
var leftPortalColumn = Ext.get("portal_col_0-xsplit");
leftPortalColumn.setHeight(10000);
leftPortalColumn.setHeight("auto");
but it did not help.
Please help. I cannot do anything with this:((
The portal has three columns. You can change column width.
When you add extra widgets into the column, the height of the element that you use to change the width of the column is not updated. The height of the portal itself is updated correctly (vertical scroll appears).
Look at the attachment.
22353
When I see via firebug, I can see that the element's height style is set to some definite value
<div id="portal_col_0-xsplit" class="x-layout-split x-layout-split-west x-splitbar-h" style="left: 510px; top: 0px; height: 401px;"> </div>
I tried to set it as:
var leftPortalColumn = Ext.get("portal_col_0-xsplit");
leftPortalColumn.setHeight(10000);
leftPortalColumn.setHeight("auto");
but it did not help.
Please help. I cannot do anything with this:((