jQuery EasyUI Layout - Creating Accordion Panels
In this tutorial, you will learn about the easyui Accordion. The Accordion contains a series of panels. All panel headers are visible, but only one panel's body content is displayed at a time. When a user clicks a panel's header, that panel's body content becomes visible while the other panels' body content is hidden.
We will create three panels, with the third panel containing a tree menu.
<div class="easyui-accordion" style="width:300px;height:200px;">
<div title="About Accordion" iconCls="icon-ok" style="overflow:auto;padding:10px;">
<h3 style="color:#0099FF;">Accordion for jQuery</h3>
<p>Accordion is a part of the easyui framework for jQuery. It allows you to define your accordion component on the web page more easily.</p>
</div>
<div title="About easyui" iconCls="icon-reload" selected="true" style="padding:10px;">
easyui helps you build your web page easily
</div>
<div title="Tree Menu">
<ul id="tt1" class="easyui-tree">
<li>
<span>Folder1</span>
<ul>
<li>
<span>Sub Folder 1</span>
<ul>
<li><span>File 11</span></li>
<li><span>File 12</span></li>
<li><span>File 13</span></li>
</ul>
</li>
<li><span>File 2</span></li>
<li><span>File 3</span></li>
</ul>
</li>
<li><span>File2</span></li>
</ul>
</div>
</div>