taffy-coustom-ui
Version:
22 lines (17 loc) • 811 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>