height

Optional height of the element:


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

<script type="text/javascript">

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

</script>