Saeven
5 Oct 2007, 12:40 PM
As evidenced by:
var accordion = new Ext.Panel({
title: "Latest in Support",
layout: 'accordion',
iconCls: 'accordion',
renderTo: 'featured_box',
width: 205,
height: 400,
shim: false,
border: false,
frame: true,
constrainHeader: true,
layoutConfig: {
// layout-specific configs go here
titleCollapse: false,
animate: true
},
items: [ { title: 'New Articles', html: '<p>Panel content!</p>' },
{ title: 'Popular Discussions', html: '<p>Panel content!</p>' },
{ title: 'Top Searches', html: '<p>Panel content!</p>' }
]
});
.... over ....
<!-- center table -->
<table width="90%" border="1" cellpadding="5" align="center">
<tr>
<td width="215">
<div id="account_box">
</div>
</td>
<td>
<div id="main_content">
</div>
</td>
<td width="215" valign="top">
<div id="featured_box">
</div>
</td>
</tr>
</table>
HTH!
Alex
var accordion = new Ext.Panel({
title: "Latest in Support",
layout: 'accordion',
iconCls: 'accordion',
renderTo: 'featured_box',
width: 205,
height: 400,
shim: false,
border: false,
frame: true,
constrainHeader: true,
layoutConfig: {
// layout-specific configs go here
titleCollapse: false,
animate: true
},
items: [ { title: 'New Articles', html: '<p>Panel content!</p>' },
{ title: 'Popular Discussions', html: '<p>Panel content!</p>' },
{ title: 'Top Searches', html: '<p>Panel content!</p>' }
]
});
.... over ....
<!-- center table -->
<table width="90%" border="1" cellpadding="5" align="center">
<tr>
<td width="215">
<div id="account_box">
</div>
</td>
<td>
<div id="main_content">
</div>
</td>
<td width="215" valign="top">
<div id="featured_box">
</div>
</td>
</tr>
</table>
HTH!
Alex