EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: roberto on April 19, 2017, 07:43:28 PM



Title: [SOLVED] horizontal accordion
Post by: roberto on April 19, 2017, 07:43:28 PM
how to remove the title? On vertical accordion I can just let it empty but I get an error on horizontal.
very useful, by the way.
tks,


Title: Re: horizontal accordion
Post by: stworthy on April 19, 2017, 08:14:52 PM
You can not remove the title but you can set its width to 0. Please try this code:
Code:
<div id="aa" class="easyui-accordion" halign="left" style="width:700px;height:300px;">
<div title="Panel1" titleDirection="up" style="border:0">
<header style="width:0;padding:0;border:0"></header>
<p>Accordion Panel1.</p>
</div>
<div title="Panel2" titleDirection="up" style="border:0">
<header style="width:0;padding:0;border:0"></header>
<p>Accordion Panel2.</p>
</div>
<div title="Panel3" titleDirection="up" style="border:0">
<header style="width:0;padding:0;border:0"></header>
<p>Accordion Panel3.</p>
</div>
</div>


Title: Re: horizontal accordion
Post by: roberto on April 20, 2017, 10:49:33 AM
peeeeeeeeeeerfect!  :)
tks so much


Title: Re: [SOLVED] horizontal accordion
Post by: brunoital on April 26, 2017, 06:36:28 AM
Thanx  :)