animation

Contains DropDown animation settings:


<select id="ddl" ></select>

<script type="text/javascript">

    $(function () {
        $("#ddl").shieldDropDown({
            dataSource: {
			    data: countries
		    },
            animation: {
                enabled: true
            },
		    textTemplate: "{name}",
		    valueTemplate: "{code}"
       });
    });

</script>