-
19 Nov 2008 8:52 AM #1
[2.2] disabled in accordion does not work
[2.2] disabled in accordion does not work
Examples:
does not work:
works perfect:Code:{ iconCls:'pasta', collapsed:true, disabled: true, title:'PCP', xtype:'treepanel', loader: new Ext.tree.TreeLoader({ dataUrl:'admin.json' }), rootVisible:false, root: new Ext.tree.AsyncTreeNode() }
only works if put style{
iconCls:'pasta',
collapsed:true,
disabled: true,
style: 'opacity: 1;',
title:'PCP',
xtype:'treepanel',
loader: new Ext.tree.TreeLoader({
dataUrl:'admin.json'
}),
rootVisible:false,
root: new Ext.tree.AsyncTreeNode()
}
style: 'opacity: 1;',
collapsible:false also does not work
-
26 Nov 2008 10:19 AM #2
I have the same problem..
This is a bug?
My version is v2.2
-
26 Nov 2008 9:51 PM #3
Can you explain a bit more what the issue is? A drop in test case would be great.
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
27 Nov 2008 2:51 AM #4
I resolved this problem, was that some files were with my problem

Thank
-
27 Nov 2008 5:06 AM #5
So, this isn't a bug? Can we close this off?
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
27 Nov 2008 5:50 AM #6Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
Well, there is indeed something wrong with disabled accordion panels.
Expand Item 2 in the following example:
The mask doesn't get resized when the panel bwrap is hidden.Code:new Ext.Viewport({ layout: 'accordion', items: [{ title: 'Item 1', disabled: true, html: Ext.example.bogusMarkup },{ title: 'Item 2', html: Ext.example.bogusMarkup }] });
(in IE6 and IE7 quirks mode you need to patch this bug first before you even see the mask)


Reply With Quote