jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
41 lines (40 loc) • 1.34 kB
HTML
<jqxDropDownButton #myDropDownButton style="float: left"
[width]="150" [height]="25">
<jqxTree #myTree
(onSelect)="treeOnSelect($event)" [width]="200">
<ul>
<li item-selected='true'>Home</li>
<li item-expanded='true'>
Solutions
<ul>
<li>Education</li>
<li>Financial services</li>
<li>Government</li>
<li>Manufacturing</li>
<li>
Solutions
<ul>
<li>eLearning</li>
<li>Mobile</li>
<li>RIA</li>
<li>Training</li>
</ul>
</li>
</ul>
</li>
<li>
Products
<ul>
<li>PC products</li>
<li>Mobile products</li>
<li>All products</li>
</ul>
</li>
</ul>
</jqxTree>
</jqxDropDownButton>
<div style="float: left; margin-top: 5px; margin-left: 30px">
<jqxCheckBox (onChange)="checkBoxOnChange($event)">
Open On Mouse Over
</jqxCheckBox>
</div>