ent).ready(function () { // Create a jqxDateTimeInput $("#jqxWidget").jqxDateTimeInput({ animationType: 'fade', width: '150px', height: '25px', animationType: 'fade', dropDownHorizontalAlignment: 'right'}); $("#noneAnimation").jqxRadioButton({ checked: false }); $("#slideAnimation").jqxRadioButton({ checked: false }); $("#fadeAnimation").jqxRadioButton({ checked: true }); $("#noneAnimation").on('checked', function () { $("#jqxWidget").jqxDateTimeInput({ animationType: 'none' }); }); $("#fadeAnimation").on('checked', function () { $("#jqxWidget").jqxDateTimeInput({ animationType: 'fade' }); }); $("#slideAnimation").on('checked', function () { $("#jqxWidget").jqxDateTimeInput({ animationType: 'slide' }); }); });