jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
22 lines (17 loc) • 832 B
HTML
<div style="float: left; font-size: 13px; font-family: Verdana">
<h3>Animation Type</h3>
<jqxRadioButton (onChecked)="noneAnimationBtnOnChacked()">
None
</jqxRadioButton>
<jqxRadioButton style="margin-top: 10px" (onChecked)="slideAnimationBtnOnChacked()">
Slide
</jqxRadioButton>
<jqxRadioButton style="margin-top: 10px" (onChecked)="fadeAnimationBtnOnChacked()" checked={true}>
Fade
</jqxRadioButton>
</div>
<jqxDropDownList #myDropDownList style="float: left; margin-top: 20px; margin-left: 100px"
[width]="150" [height]="30" [source]="dataAdapter" [selectedIndex]="0"
[animationType]="'fade'" [dropDownHorizontalAlignment]="'right'"
[dropDownWidth]="200" [displayMember]="'ContactName'" [valueMember]="'CompanyName'">
</jqxDropDownList>