-
13 May 2009 10:53 PM #71
Hm.. This subtraction makes the layout aware of items margins - I'd not remove it. Are you sure this is the cause? Do the elements in your tabs have horizontal margins?
-
14 May 2009 7:56 AM #72
In my testing this change was critical to getting Safari working correctly. I had a bug where row-fit panels were not expanding/contracting width when a border layout slider was moved, this change fixed that problem. I had the big problem where tab content disappeared, this change fixed that as well.
I don't use many margins in my app and I understand that I may have introduced another bug here for users that do. A better solution might be to make this calculation conditional on Ext.isSafari
-
9 Jun 2009 1:56 AM #73
Hi,
I like this extension and have been using it for some time. It is also compatible with ExtJS 3.0. I am wondering whether it will migrate to use the vbox layout that is available in ExtJS 3.0?
-
15 Jul 2009 7:09 AM #74
Can rowFit be replaced with the new hBox layout in Ext3.0?
-
15 Jul 2009 7:14 AM #75
May be. The difference may be in handling "height: auto" on the container.
From my experience RowFit works well with it, have not tested hBox in this regard yet.
-
15 Jul 2009 7:30 AM #76
Thanks for the reply, I just want to keep file size down so I will see if I can remove the rowFitLayout...
-
1 Sep 2009 4:29 AM #77
Has anyone tried to use this layout with Element mask ?
I have a RowFitLayout Panel with two tabPanels inside it (50% each)...
When I create a mask over tabPanel el attributes (that should be the main HTML element), it - the mask - will overflow and cover also the other tabPanel...
I attach a screenshot of my problem
-
22 Oct 2009 12:23 PM #78
bug using w/ 3.0.2
bug using w/ 3.0.2
This layout saved me some grief on a west panel with panel above and a treepanel below. However, the height of the treepanel that was to take up the remaining space was cheated by what appears the treepanel's title and so I had to make the following change:
Code:frameH = c.getFrameHeight ? c.getFrameHeight() : 0; c.setSize({ width: targetSize.width - c.getEl().getMargins('lr'), height: absH + frameH }); absHeightLeft -= absH;
-
6 Mar 2012 11:25 PM #79
Hi everyone!
Has someone a actual working version of this extension? The repo doesn't seem to exist anymore... Would be cool if some of you could post the latest availible version here or some repo where i can get this extension.
thx in advance
vidj


Reply With Quote