jQuery ComboBox Settings

The ComboBox widget is initialized with the shieldComboBox() constructor, passing it a dictionary of settings as shown below:

<input id="combo" />

<script type="text/javascript">
    $(function () {
        $("#combo").shieldComboBox({
            dataSource: {
                data: countries
            },
            textTemplate: "{name}",
            valueTemplate: "{code}",
            inputTemplate: "{name}"
       });
    });
</script>

Details about all configuration settings can be found below.