flyingman
20 Aug 2009, 12:32 AM
The ext-Api says for the TreeNode:
expandable : Boolean
If set to true, the node will always show a plus/minus icon, even when empty
my code
},{
region:'west', /* Navigation/Outline - mehrere Outlines möglich */
id: 'west-panel',
xtype: 'panel',
title:'<span style="vertical-align:top;font: 12px; font-family:Arial, VERSAL; color:#003399; font-weight:bold;">' + Ext.nd.Session.currentDatabase.title.toUpperCase() + '</span>',
split:true,
width: 196,
minSize: 196,
maxSize: 196,
collapsible: false,
margins:'10 10 10 10',
layout:'fit',
layoutConfig:{
animate:true
},
defaults: {
target:'center-region',
border: false
},
items: [{
xtype:'xnd-uioutline',
expanded: false,
lines: false,
target:'center-region',
contenEL:'mainDiv',
outlineName:'outNavigation',
showIcons: false
}]
}
The outline shows nevertheless the plus/minus icon. How can I hidden the plus/minus icons?
Thanks
Roland
expandable : Boolean
If set to true, the node will always show a plus/minus icon, even when empty
my code
},{
region:'west', /* Navigation/Outline - mehrere Outlines möglich */
id: 'west-panel',
xtype: 'panel',
title:'<span style="vertical-align:top;font: 12px; font-family:Arial, VERSAL; color:#003399; font-weight:bold;">' + Ext.nd.Session.currentDatabase.title.toUpperCase() + '</span>',
split:true,
width: 196,
minSize: 196,
maxSize: 196,
collapsible: false,
margins:'10 10 10 10',
layout:'fit',
layoutConfig:{
animate:true
},
defaults: {
target:'center-region',
border: false
},
items: [{
xtype:'xnd-uioutline',
expanded: false,
lines: false,
target:'center-region',
contenEL:'mainDiv',
outlineName:'outNavigation',
showIcons: false
}]
}
The outline shows nevertheless the plus/minus icon. How can I hidden the plus/minus icons?
Thanks
Roland