-
10 Mar 2011 6:10 AM #11
Dude
I just updated to ver 0.21 and I get an error in console:
Uncaught TypeError: Cannot call method 'setStyle' of undefined
Ext.ux.tot2ivn.VrTabPanel.Ext.extend.onResizeExt.ux.tot2ivn.VrTabPanel.js:539
Ext.BoxComponent.Ext.extend.setSizeext-all-debug.js:12091
Ext.layout.FitLayout.Ext.extend.setItemSizeext-all-debug.js:13316
Ext.layout.FitLayout.Ext.extend.onLayoutext-all-debug.js:13309
Ext.layout.ContainerLayout.Ext.extend.layoutext-all-debug.js:13089
Ext.Container.Ext.extend.doLayoutext-all-debug.js:12896
Ext.layout.CardLayout.Ext.extend.setActiveItemext-all-debug.js:13367
Ext.TabPanel.Ext.extend.setActiveTabext-all-debug.js:30381
Ext.TabPanel.Ext.extend.onStripMouseDownext-all-debug.js:30074
here's the code where I create my vertical tab panel ...
RegardsCode:var modelsPanel = new Ext.Panel( { id : 'tab-panel-model-management', title : LOCALE_SECURITY_MODEL_MANAGEMENT, layout : 'fit', border : false, items : [ new Ext.ux.tot2ivn.VrTabPanel( { activeTab : 0, border : false, tabPosition :'left', //choose 'left' or 'right' for vertical tabs; 'top' or 'bottom' for horizontal tabs tabWidth :100, defaults : { autoScroll: true }, items:[ getPermissionsPanel(), //my functions that create panels... getDomainsPanel(), getActionsPanel() ] } ) ] } );
Armando
-
10 Mar 2011 8:19 AM #12
Solved my problem .. I was wrapping that vertical tab panel .. so I unwrapped it ...
Regards
Armando
-
17 Mar 2011 1:11 AM #13
-
20 Jul 2011 12:02 PM #14
Nice Extension. Any plans to get this working in EXTJS 4?
Nice Extension. Any plans to get this working in EXTJS 4?
Hello tot2ivn...
I really, ReaLLY like your vertical tab extension
, as I was not too impressed with the Group tab panel (vertical tab panel) that EXTJS 3 had come out with. It was not very configurable, and it looks like they even scrapped it for EXTJS4.
Do you have any plans to get your Vertical Tab Panel working for EXTJS 4?
-
8 Nov 2011 11:41 AM #15
Agreed
Agreed
Would love to see this plugin work with Ext 4, Its sad that something like this hasn't become a built in feature (especially with the ext designer tool).
-
8 Nov 2011 12:32 PM #16
Thank you guys for your interest in the extension. I currently don't have any projects using ExtJS anymore, but will try to make this plugin work w Ext 4.0 in the near future due to quite a number of interest requests.
Cheers,
Totti
P/S: If anyone can take the code and make it work with ExtJS 4, please do so and make it yours. I don't have any restrictions on the license although I originally put GPL3, but I think it's not necessary anymore.me.constructor === Frontend.Engineer
-
27 Apr 2012 11:20 AM #17
Does anyone know if there is a known bug with this extension where form textfields cannot be selected in firefox? I have a nested form in the tab and cannot select text with the mouse in a textfield in firefox. I have no problem with a regular tabpanel or with other browsers.
-
30 Apr 2012 9:53 AM #18
Ok I found the problem. In the css it had this:
I commented those out and it is working. I'm not sure if those were a critical part of the extension, but so far it is working. I will post back if I find any problems with it.Code:-webkit-user-select: none; -moz-user-select:none;
-
4 Jul 2012 3:30 AM #19
Breaks with no width specified
Breaks with no width specified
When removing the width property from code the whole thing breaks.
example:
var tabs = new Ext.ux.tot2ivn.VrTabPanel({
renderTo: 'tabs1',
activeTab: 0,
frame:true,
//width:450,
bodyStyle: 'padding: 10px',
defaults:{autoHeight: true},
items:[
{contentEl:'script', title: 'Short Text'},
{contentEl:'markup', title: 'Long Text'}
]
});
I want to make it possible to fit it 100% inside of the panel and resize it properly.
But now the right-side content will go below the tabs.
-
5 Jul 2012 11:43 AM #20
Vertical TabPanel for EXTJS4
Vertical TabPanel for EXTJS4
Here is a link to the code working for EXTJS4:
http://lucian.lature.net/extjs/demo/VerticalTabPanel/
Similar Threads
-
How to wrap tab title so that it fits tab width in a Vertical Tab Panel
By koala.lam in forum Ext 3.x: Help & DiscussionReplies: 1Last Post: 21 Oct 2010, 8:39 AM -
problems with tab item and vertical panel
By paopao in forum Ext GWT: Help & Discussion (1.x)Replies: 0Last Post: 17 Feb 2009, 2:20 PM -
problems with tab item and vertical panel
By paopao in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 17 Feb 2009, 1:33 PM -
[ExtJs 2.1] Tab Panel with shared panel won't work [SOLVED]
By elnove in forum Ext 2.x: Help & DiscussionReplies: 8Last Post: 3 Aug 2008, 12:37 PM


Reply With Quote