jQuery ListBox Settings

The ListBox widget is initialized with the shieldListBox constructor, passing it a dictionary of settings as shown below:


<div id="listbox" ></div>
<script type="text/javascript">
    $(function () {
        $("#listbox").shieldListBox({
            dataSource: {
			    data: countries
		    },
            textTemplate: "{name}"
        });
    });
</script>

Details about all configuration settings can be found below.