UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

3,536 lines 195 kB
<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="../../../../Styles/jqx.apireference.css" type="text/css" />
    <script type="text/javascript" src="../../../../scripts/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="../../../../scripts/documentation.js"></script>
    <meta name="keywords" content="jQuery, List, ListBox, DropDownList, Popup List, DropDown List, Input" />
    <meta name="description" content="This page represents the help documentation of the jqxDropDownList widget." />
    <title>jqxDropDownList API Reference</title>
    <script type="text/javascript">
        $(document).ready(function () {
            $(".documentation-option-type-click").click(function (event) {
                $(event.target).parents('tr').next().find(".property-content").toggle();
            });
        });
    </script>
</head>
<body>
        <div id="properties">
            <h2 class="documentation-top-header">Properties</h2>
            <table class="documentation-table">
                <tr>
                    <th>Name
                    </th>
                    <th>Type
                    </th>
                    <th>Default
                    </th>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span50'>autoOpen</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets whether the DropDown is automatically opened when the mouse cursor is moved over the widget.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>autoOpen</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({ autoOpen: true });
                        </code></pre>
                            <p>
                                Get the <code>autoOpen</code> property.
                            </p>
                            <pre><code>var autoOpen = $('#jqxDropDownList').jqxDropDownList('autoOpen'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/S5RcC/">autoOpen is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span82'>autoItemsHeight</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets whether items will wrap when they reach the width of the dropDown.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>autoItemsHeight</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({autoItemsHeight: true}); </code></pre>
                            <p>
                                Get the <code>autoItemsHeight</code> property.
                            </p>
                            <pre><code>var autoItemsHeight = $('#jqxDropDownList').jqxDropDownList('autoItemsHeight'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/77qo6wvp/">autoItemsHeight is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span26'>autoDropDownHeight</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets whether the height of the jqxDropDownList's ListBox displayed in the widget's DropDown is calculated as a sum of the items heights.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>autoDropDownHeight</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({autoDropDownHeight: true}); </code></pre>
                            <p>
                                Get the <code>autoDropDownHeight</code> property.
                            </p>
                            <pre><code>var autoDropDownHeight = $('#jqxDropDownList').jqxDropDownList('autoDropDownHeight'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/GH4cN/">autoDropDownHeight is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span42'>animationType</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>'slide'
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the type of the animation.
                            </p>
                            <b>Possible Values:</b>
                            <br />
                            <pre><code>'fade'</code></pre>
                            <pre><code>'slide'</code></pre>
                            <pre><code>'none'</code></pre>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>animationType</code> property
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({animationType: 'none'});
                        </code></pre>
                            <p>
                                Get the <code>animationType</code> property.
                            </p>
                            <pre><code>var animationType = $('#jqxDropDownList').jqxDropDownList('animationType'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/snQLr/">animationType is set to 'fade'</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span56'>checkboxes</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Determines whether checkboxes will be displayed next to the list items. (The feature requires jqxcheckbox.js)
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>checkboxes</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({checkboxes:true}); </code></pre>
                            <p>
                                Get the <code>checkboxes</code> property.
                            </p>
                            <pre><code>var checkboxes = $('#jqxDropDownList').jqxDropDownList('checkboxes'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/CLB86/">checkboxes is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span30'>closeDelay</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>400
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the delay of the 'close' animation.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the clos<code>closeDelay</code>Delay property
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({closeDelay: 200});
                        </code></pre>
                            <p>
                                Get the <code>closeDelay</code> property.
                            </p>
                            <pre><code>var closeDelay = $('#jqxDropDownList').jqxDropDownList('closeDelay'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/JEfw2/">closeDelay is set to 2000</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span11'>disabled</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Enables/disables the jqxDropDownList.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>disabled</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({ disabled: true }); </code></pre>
                            <p>
                                Get the <code>disabled</code> property.
                            </p>
                            <pre><code>var disabled = $('#jqxDropDownList').jqxDropDownList('disabled');</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/GLjm8/">disabled is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span12'>displayMember</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>""
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the displayMember of the Items. The displayMember specifies the name of an object property to display. The name is contained in the collection specified by the 'source' property.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>displayMember</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({displayMember: 'firstName'});</code></pre>
                            <p>
                                Get the <code>displayMember</code> property.
                            </p>
                            <pre><code>var displayMember = $('#jqxDropDownList').jqxDropDownList('displayMember'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/CHPax/">displayMember is set to 'text'</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span13'>dropDownHorizontalAlignment</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>'left'
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the DropDown's alignment.
                            </p>
                            <b>Possible Values:</b>
                            <br />
                            <pre><code>'left'</code></pre>
                            <pre><code>'right'</code></pre>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>dropDownHorizontalAlignment</code> property.
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({ dropDownHorizontalAlignment: 'right'}); </code></pre>
                            <p>
                                Get the <code>dropDownHorizontalAlignment</code> property.
                            </p>
                            <pre><code>var dropDownHorizontalAlignment = $('#jqxDropDownList').jqxDropDownList('dropDownHorizontalAlignment'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/8GGjT/">dropDownHorizontalAlignment is set to 'right'</a>
                            </div>
                        </div>
                    </td>
                </tr>
             <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span85'>dropDownVerticalAlignment</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>'bottom'
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the DropDown's alignment.
                            </p>
                            <b>Possible Values:</b>
                            <br />
                            <pre><code>'top'</code></pre>
                            <pre><code>'bottom'</code></pre>
                            <h4>Code example</h4>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({ dropDownVerticalAlignment: 'top'}); </code></pre>
                            <p>
                                Get the <code>dropDownVerticalAlignment</code> property.
                            </p>
                            <pre><code>var dropDownVerticalAlignment = $('#jqxDropDownList').jqxDropDownList('dropDownVerticalAlignment');</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/z6ex9buv/">dropDownVerticalAlignment is set to "top"</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span14'>dropDownHeight</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>200
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the height of the jqxDropDownList's ListBox displayed in the widget's DropDown.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>dropDownHeight</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({dropDownHeight: 250}); </code></pre>
                            <p>
                                Get the <code>dropDownHeight</code> property.
                            </p>
                            <pre><code>var dropDownHeight = $('#jqxDropDownList').jqxDropDownList('dropDownHeight'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/yfMAJ/">dropDownHeight is set to 200</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span15'>dropDownWidth</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>200
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the width of the jqxDropDownList's ListBox displayed in the widget's DropDown.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>dropDownWidth</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({dropDownWidth: 250}); </code></pre>
                            <p>
                                Get the <code>dropDownWidth</code> property.
                            </p>
                            <pre><code>var dropDownWidth = $('#jqxDropDownList').jqxDropDownList('dropDownWidth'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/aL9be/">dropDownWidth is set to 210</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span8'>enableSelection</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>true
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Enables/disables the selection.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>enableSelection</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({enableSelection:false}); </code></pre>
                            <p>
                                Get the <code>enableSelection</code> property.
                            </p>
                            <pre><code>var enableSelection = $('#jqxDropDownList').jqxDropDownList('enableSelection'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/SaBGE/">enableSelection is set to false</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span32'>enableBrowserBoundsDetection</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets whether the dropdown detects the browser window's bounds and automatically adjusts the dropdown's position.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>enableBrowserBoundsDetection</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({enableBrowserBoundsDetection:false}); </code></pre>
                            <p>
                                Get the <code>enableBrowserBoundsDetection</code> property.
                            </p>
                            <pre><code>var enableBrowserBoundsDetection = $('#jqxDropDownList').jqxDropDownList('enableBrowserBoundsDetection'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/pjEYJ/">enableBrowserBoundsDetection is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span7'>enableHover</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>true
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Enables/disables the hover state.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>enableHover</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({enableHover: false}); </code></pre>
                            <p>
                                Get the <code>enableHover</code> property.
                            </p>
                            <pre><code>var enableHover = $('#jqxDropDownList').jqxDropDownList('enableHover'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/mReYg/">enableHover is set to false</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span17'>filterable</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Determines whether the Filtering is enabled.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>filterable</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({filterable:true}); </code></pre>
                            <p>
                                Get the <code>filterable</code> property.
                            </p>
                            <pre><code>var filterable = $('#jqxDropDownList').jqxDropDownList('filterable'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/ph5S6/">filterable is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span77'>filterHeight</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>27
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Determines the Filter's height.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>filterHeight</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({filterHeight:30}); </code></pre>
                            <p>
                                Get the <code>filterHeight</code> property.
                            </p>
                            <pre><code>var filterHeight = $('#jqxDropDownList').jqxDropDownList('filterHeight'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/RnpYb/">filterHeight is set to 30</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span78'>filterDelay</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>100
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Determines the Filter's delay. After 100 milliseconds, the widget automatically filters its data based on the filter input's value. To perform filter only on "Enter" key press, set this property to 0.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>filterDelay</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({filterDelay:300}); </code></pre>
                            <p>
                                Get the <code>filterDelay</code> property.
                            </p>
                            <pre><code>var filterDelay = $('#jqxDropDownList').jqxDropDownList('filterDelay'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/PT988/">filterDelay is set to 300</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span79'>filterPlaceHolder</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>"Looking for"
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Determines the Filter input's place holder.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>filterPlaceHolder</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({filterPlaceHolder:300}); </code></pre>
                            <p>
                                Get the <code>filterPlaceHolder</code> property.
                            </p>
                            <pre><code>var filterPlaceHolder = $('#jqxDropDownList').jqxDropDownList('filterPlaceHolder'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/GY7LM/">filterPlaceHolder is set to "Filtering..."</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span2'>height</span>
                    </td>
                    <td>
                        <span>Number/String</span>
                    </td>
                    <td>null
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the jqxDropDownList's height.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>height</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({  height: '250px' });
                        </code></pre>
                            <p>
                                Get the <code>height</code> property.
                            </p>
                            <pre><code>var height = $('#jqxDropDownList').jqxDropDownList('height');</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/hYM69/">height is set to 20</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span38'>incrementalSearch</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>true
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the incrementalSearch property. An incremental search begins searching as soon as you type the first character of the search string. As you type in the search string, jqxDropDownList automatically selects the found item.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>incrementalSearch</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({incrementalSearch: false});</code></pre>
                            <p>
                                Get the <code>incrementalSearch</code> property.
                            </p>
                            <pre><code>var incrementalSearch = $('#jqxDropDownList').jqxDropDownList('incrementalSearch'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/LQEmK/">incrementalSearch is set to false</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span40'>incrementalSearchDelay</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>700
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the incrementalSearchDelay property. The incrementalSearchDelay specifies the time-interval in milliseconds after which the previous search string is deleted. The timer starts
                             when you stop typing.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>incrementalSearchDelay</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({incrementalSearchDelay: 400});</code></pre>
                            <p>
                                Get the <code>incrementalSearchDelay</code> property.
                            </p>
                            <pre><code>var incrementalSearchDelay = $('#jqxDropDownList').jqxDropDownList('incrementalSearchDelay'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/k9Mxj/">incrementalSearchDelay is set to 100</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span10'>itemHeight</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>-1
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the height of the jqxDropDownList Items. When the itemHeight == - 1,
                             each item's height is equal to its desired height.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>itemHeight</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({itemHeight: 25}); </code></pre>
                            <p>
                                Get the <code>itemHeight</code> property.
                            </p>
                            <pre><code>var itemHeight = $('#jqxDropDownList').jqxDropDownList('itemHeight'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/uY2fK/">itemHeight is set to 30</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span29'>openDelay</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>350
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the delay of the 'open' animation.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>openDelay</code> property
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({openDelay: 200});
                        </code></pre>
                            <p>
                                Get the <code>openDelay</code> property.
                            </p>
                            <pre><code>var openDelay = $('#jqxDropDownList').jqxDropDownList('openDelay'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/Y6EPt/">openDelay is set to 2000</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span55'>placeHolder</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>"Please Choose:"
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Text displayed when the selection is empty.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>promptText</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({placeHolder: "Select:"}); </code></pre>
                            <p>
                                Get the <code>promptText</code> property.
                            </p>
                            <pre><code>var promptText = $('#jqxDropDownList').jqxDropDownList('placeHolder'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/7UBGc/">promptText is set to 'Select'</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span73'>popupZIndex</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>20000
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the popup's z-index.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>popupZIndex</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({popupZIndex: 999999});</code></pre>
                            <p>
                                Get the <code>popupZIndex</code> property.
                            </p>
                            <pre><code>var zIndex = $('#jqxDropDownList').jqxDropDownList('popupZIndex'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/mrb6Y/">popupZIndex is set to 9999</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span67'>rtl</span>
                    </td>
                    <td>
                        <span>Boolean</span>
                    </td>
                    <td>false
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts.</p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>rtl</code> property.
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({rtl : true}); </code></pre>
                            <p>
                                Get the <code>rtl</code> property.
                            </p>
                            <pre><code>var rtl = $('#jqxDropDownList').jqxDropDownList('rtl'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/FCTMQ/">rtl is set to true</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span52'>renderer</span>
                    </td>
                    <td>
                        <span>Function</span>
                    </td>
                    <td>null
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Callback function which is called when an item is rendered. By using the renderer function, you can customize the look of the list items.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>renderer</code> property
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({renderer: function (index, label, value) 
{
    var datarecord = data[index];
    return datarecord.firstname + " " + datarecord.lastname;
}
});
                        </code></pre>
                            <p>
                                Get the <code>renderer</code> property.
                            </p>
                            <pre><code>var renderer = $('#jqxDropDownList').jqxDropDownList('renderer'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/GGPFp/">renderer is set to a custom rendering function</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span48'>selectionRenderer</span>
                    </td>
                    <td>
                        <span>Function</span>
                    </td>
                    <td>null
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Callback function which is called when the selected item is rendered in the jqxDropDownList's content area. By using the selectionRenderer function, you can customize the look of the selected item.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>selectionRenderer</code> property
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList({selectionRenderer: function (htmlString) 
{
    return "My String";
}
});
                        </code></pre>
                            <p>
                                Get the <code>selectionRenderer</code> property.
                            </p>
                            <pre><code>var selectionRenderer = $('#jqxDropDownList').jqxDropDownList('selectionRenderer'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/9Kt5r/">selectionRenderer is set to a custom rendering function</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span39'>searchMode</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>startswith
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the item incremental search mode. When the user types some text in a focused DropDownList,
                             the jqxListBox widget tries to find the searched item using the entered text and the selected search mode.
                            </p>
                            <b>Possible Values:</b>
                            <br />
                            <pre><code>'none'</code></pre>
                            <pre><code>'contains'</code></pre>
                            <pre><code>'containsignorecase'</code></pre>
                            <pre><code>'equals'</code></pre>
                            <pre><code>'equalsignorecase'</code></pre>
                            <pre><code>'startswithignorecase'</code></pre>
                            <pre><code>'startswith'</code></pre>
                            <pre><code>'endswithignorecase'</code></pre>
                            <pre><code>'endswith'</code></pre>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>searchMode</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({searchMode: 'contains' }); </code></pre>
                            <p>
                                Get the <code>searchMode</code> property.
                            </p>
                            <pre><code>var searchMode = $('#jqxDropDownList').jqxDropDownList('searchMode'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/75QYe/">searchMode is set to 'startswithignorecase'</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span6'>scrollBarSize</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>17
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the scrollbars size.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>scrollBarSize</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({scrollBarSize:25}); </code></pre>
                            <p>
                                Get the <code>scrollBarSize</code> property.
                            </p>
                            <pre><code>var scrollBarSize = $('#jqxDropDownList').jqxDropDownList('scrollBarSize'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/mkE8c/">scrollBarSize is set to 10</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span5'>source</span>
                    </td>
                    <td>
                        <span>Array</span>
                    </td>
                    <td>null
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the items source.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>source</code> property.
                            </p>
                            <pre><code>var data = [</code></pre>
                            <pre><code>"Affogato",</code></pre>
                            <pre><code>"Americano",</code></pre>
                            <pre><code>"Bicerin"</code></pre>
                            <pre><code>];</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({source: data});</code></pre>
                            <br />
                            Binding using the jqx.dataAdapter(requires jqxdata.js):
                         <pre><code>
// url of the data.
var url = "../sampledata/customers.txt";
var parentsLength = $("#jqxWidget").parents().length;
if (parentsLength > 3) {
    url = 'demos/sampledata/customers.txt';
}
// prepare the data. Set the datatype to 'json', 'xml', 'tsv', 'array', 'local' or 'csv.
var source =
{
    datatype: "json",
    datafields: [
        { name: 'CompanyName' },
        { name: 'ContactName' }
    ],
    id: 'id',
    url: url
};
// create a new instance of the jqx.dataAdapter.
var dataAdapter = new $.jqx.dataAdapter(source);
// Create a jqxDropDownList
$("#jqxWidget").jqxDropDownList({ source: dataAdapter, displayMember: "ContactName", valueMember: "CompanyName", width: 200, height: 250});
</code></pre>
                            <p>
                                Get the <code>source</code> property.
                            </p>
                            <pre><code>var source = $('#jqxDropDownList').jqxDropDownList('source'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/hwJAs/">source is set to source</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span4'>selectedIndex</span>
                    </td>
                    <td>
                        <span>Number</span>
                    </td>
                    <td>-1
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the selected index.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>selectedIndex</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({selectedIndex: 2 }); </code></pre>
                            <p>
                                Get the <code>selectedIndex</code> property.
                            </p>
                            <pre><code>var selectedIndex = $('#jqxDropDownList').jqxDropDownList('selectedIndex'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/7BbLk/">selectedIndex is set to 3</a>
                            </div>
                        </div>
                    </td>
                </tr>
	     	<tr>
				<td class="documentation-option-type-click">
					<span id='Span86'>template</span>
				</td>
				<td>
					<span>String</span>
				</td>
				<td>'default'
				</td>
			</tr>
			<tr>
				<td colspan='3' style='width: 100%'>
					<div class="documentation-option-description property-content" style="display: none;">
						<p>
							Determines the template as an alternative of the default styles.
						</p>
						<b>Possible Values:</b>
						<br />
						<pre><code>'default' - the default template. The style depends only on the "theme" property value.</code></pre>
						<pre><code>'primary' - dark blue style for extra visual weight.</code></pre>
						<pre><code>'success' - green style for successful or positive action.</code></pre>
						<pre><code>'warning' - orange style which indicates caution.</code></pre>
						<pre><code>'danger' - red style which indicates a dangerous or negative action.</code></pre>
						<pre><code>'info' - blue button, not tied to a semantic action or use.</code></pre>
						<h4>Code examples</h4>
						<p>
							Set the <code>template</code> property.
						</p>
						<pre><code>$("#jqxDropDownList").jqxDropDownList({ template: 'primary'});</code></pre>

						<p>
							Get the <code>template</code> property.
						</p>
						<pre><code>var template = $('#jqxDropDownList').jqxDropDownList('template');</code></pre>
						<div style="padding-bottom: 5px;">
							<em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/uxskojt7/">template is set to 'success'</a>
						</div>

					</div>
				</td>
			</tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span57'>theme</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>''
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets the widget's theme.
                            </p>
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file.
                         In order to set a theme, you need to do the following:
                         <ul>
                             <li>Include the theme's CSS file after jqx.base.css.<br />
                                 The following code example adds the 'energyblue' theme.
                                 <pre><code>
<pre><code>&lt;link rel=&quot;stylesheet&quot; href=&quot;../../../../jqwidgets/styles/jqx.base.css&quot; type=&quot;text/css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;../../../../jqwidgets/styles/jqx.energyblue.css&quot; type=&quot;text/css&quot; /&gt;
</code></pre>
</code></pre>
                             </li>
                             <li>Set the widget's theme property to 'energyblue' when you initialize it.
                             </li>
                         </ul>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/4KVKf/">theme is set to 'energyblue'</a>
                            </div>
                        </div>
                    </td>
                </tr>



                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span36'>valueMember</span>
                    </td>
                    <td>
                        <span>String</span>
                    </td>
                    <td>""
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the valueMember of the Items. The valueMember specifies the name of an object property to set as a 'value' of the list items. The name is contained in the collection specified by the 'source' property.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>valueMember</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({valueMember: 'lastName'});</code></pre>
                            <p>
                                Get the <code>valueMember</code> property.
                            </p>
                            <pre><code>var valueMember = $('#jqxDropDownList').jqxDropDownList('valueMember'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/tbgGe/">valueMember is set to 'value'</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span1'>width</span>
                    </td>
                    <td>
                        <span>Number/String</span>
                    </td>
                    <td>null
                    </td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the jqxDropDownList's width.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Set the <code>width</code> property.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList({ width: '250px' });
                        </code></pre>
                            <p>
                                Get the <code>width</code> property.
                            </p>
                            <pre><code>var width = $('#jqxDropDownList').jqxDropDownList('width');</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/9bc3f/">width is set to 200</a>
                            </div>
                        </div>
                    </td>
                </tr>



                <tr>
                    <td colspan='3' style='width: 100%'>
                        <h2 class="documentation-top-header">Events</h2>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span62'>bindingComplete</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when the data binding operation is completed.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>bindingComplete</code> event by type: jqxDropDownList.
                            </p>
                            <pre><code>$("#jqxDropDownList").on('bindingComplete', function (event) { });</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/FGGMU/">Bind to the bindingComplete event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span3'>close</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when the popup ListBox is closed.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>close</code> by type: jqxDropDownList.
                            </p>
                            <pre><code>$('#jqxDropDownList').on('close', function (event) { // Some code here. });
                        </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/WBmD9/">Bind to the close event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span54'>checkChange</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when an item is checked/unchecked.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>checkChange</code> by type: jqxDropDownList.
                            </p>
                            <pre><code>$("#jqxDropDownList").on('checkChange', function (event)
{
    if (event.args) {
    var item = event.args.item;
    var value = item.value;
    var label = item.label;
    var checked = item.checked;
    var checkedItems = $("#jqxDropDownList").jqxDropDownList('getCheckedItems');
}
});
</code></pre>
                            The item object has the following fields:
                         <br />
                            <ul>
                                <li>label - gets item's label.</li>
                                <li>value - gets the item's value.</li>
                                <li>disabled - gets whether the item is enabled/disabled.</li>
                                <li>checked - gets whether the item is checked/unchecked.</li>
                                <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                                <li>html - gets the item's display html. This can be used instead of label.</li>
                                <li>index - gets the item's index.</li>
                                <li>group - gets the item's group.</li>
                            </ul>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/hxXtt/">Bind to the checkChange event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span9'>change</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when the user selects an item.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>change</code> by type: jqxDropDownList.
                            </p>
                            <pre><code>$('#jqxDropDownList').on('change', function (event)
{     
    var args = event.args;
    if (args) {
    // index represents the item's index.                      
    var index = args.index;
    var item = args.item;
    // get item's label and value.
    var label = item.label;
    var value = item.value;
    var type = args.type; // keyboard, mouse or null depending on how the item was selected.
} 
});
                        </code></pre>
                            The item object has the following fields:
                         <br />
                            <ul>
                                <li>label - gets item's label.</li>
                                <li>value - gets the item's value.</li>
                                <li>disabled - gets whether the item is enabled/disabled.</li>
                                <li>checked - gets whether the item is checked/unchecked.</li>
                                <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                                <li>html - gets the item's display html. This can be used instead of label.</li>
                                <li>index - gets the item's index.</li>
                                <li>group - gets the item's group.</li>
                            </ul>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/wBpPY/">Bind to the change event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span16'>open</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when the popup ListBox is opened.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>open</code> by type: jqxDropDownList.
                            </p>
                            <pre><code>$('#jqxDropDownList').on('open', function (event) { // Some code here. }); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/aXQwh/">Bind to the open event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span27'>select</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when the user selects an item.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>select</code> event by type: jqxDropDownList.
                            </p>
                            <pre><code>$('#jqxDropDownList').on('select', function (event)
{
    var args = event.args;
    if (args) {
    // index represents the item's index.                
    var index = args.index;
    var item = args.item;
    // get item's label and value.
    var label = item.label;
    var value = item.value;
    var type = args.type; // keyboard, mouse or null depending on how the item was selected.
}                        
});
                        </code></pre>
                            The item object has the following fields:
                         <br />
                            <ul>
                                <li>label - gets item's label.</li>
                                <li>value - gets the item's value.</li>
                                <li>disabled - gets whether the item is enabled/disabled.</li>
                                <li>checked - gets whether the item is checked/unchecked.</li>
                                <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                                <li>html - gets the item's display html. This can be used instead of label.</li>
                                <li>index - gets the item's index.</li>
                                <li>group - gets the item's group.</li>
                            </ul>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/3UJBg/">Bind to the select event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span18'>unselect</span>
                    </td>
                    <td>
                        <span>Event</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                This event is triggered when the user unselects an item.
                            </p>
                            <h4>Code example</h4>
                            <p>
                                Bind to the <code>unselect</code> event by type: jqxDropDownList.
                            </p>
                            <pre><code>$('#jqxDropDownList').on('unselect', function (event)
{
    var args = event.args;
    if (args) {
    // index represents the item's index.                     
    var index = args.index;
    var item = args.item;
    // get item's label and value.
    var label = item.label;
    var value = item.value;
}        
});
                        </code></pre>
                            The item object has the following fields:
                         <br />
                            <ul>
                                <li>label - gets item's label.</li>
                                <li>value - gets the item's value.</li>
                                <li>disabled - gets whether the item is enabled/disabled.</li>
                                <li>checked - gets whether the item is checked/unchecked.</li>
                                <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                                <li>html - gets the item's display html. This can be used instead of label.</li>
                                <li>index - gets the item's index.</li>
                                <li>group - gets the item's group.</li>
                            </ul>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/6Qyyk/">Bind to the unselect event by type:jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>


                <tr>
                    <td colspan='3' style='width: 100%'>
                        <h2 class="documentation-top-header">Methods</h2>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span31'>addItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Adds a new item to the jqxDropDownList. Returns 'true', if the new item is added or 'false' if the item is not added.
                            </p>
                            <br />
                            The following fields can be used for the new item:
                         <ul>
                             <li>label - determines the item's label.</li>
                             <li>value -  determines the item's value.</li>
                             <li>disabled - determines whether the item is enabled/disabled.</li>
                             <li>checked - determines whether item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - determines the item's display html. This can be used instead of label.</li>
                             <li>group - determines the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>addItem</code> method.
                            </p>
                            <pre><code>// @param String</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('addItem', 'jQuery' ); </code></pre>
                            <h4>Code example 2</h4>
                            <p>
                                Invoke the <code>addItem</code> method.
                            </p>
                            <pre><code>// @param Object</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('addItem', { label: 'Text' value: 'Id'} ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/UxPdt/">adds an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span22'>clearSelection</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Clears all selected items.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>clearSelection</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('clearSelection'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/5FRxK/">clears the selection in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span41'>clear</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Clears all items.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>clear</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('clear'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/VFx8p/">clears all items in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span23'>close</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Hides the popup listbox.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>close</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList("close" ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/yuRKh/">closes the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span43'>checkIndex</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Checks a list item when the 'checkboxes' property value is true. The index is zero-based, i.e to check the first item, the 'checkIndex' method should be called with parameter 0.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>checkIndex</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('checkIndex', 0); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/FGCfq/">checks a box in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span64'>checkItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Checks an item.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>checkItem</code> method.
                            </p>
                            <pre><code>// @param list Item</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('checkItem', item ); </code></pre>
                            *To get an item, use the getItem or getItemByValue methods.
                         <br />
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/HgHaN/">checks an item in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span46'>checkAll</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Checks all list items when the 'checkboxes' property value is true.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>checkAll</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('checkAll'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/fw2g2/">checks all of the items in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span80'>clearFilter</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Clears the widget's filter when filtering is applied.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code examples</h4>
                            <p>
                                Invoke the <code>clearFilter</code> method.
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList('clearFilter'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/7gryLwv0/">clears the jqxDropDownList's Filter.</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span68'>destroy</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Destroys the widget.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code examples</h4>
                            <p>
                                Invoke the <code>destroy</code> method.
                            </p>
                            <pre><code>$('#jqxDropDownList').jqxDropDownList('destroy'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/6nNAE/">destroys the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span74'>disableItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Disables an item. Item is an Object.
                            </p>
                            <br />
                            The following fields can be used for the item:
                         <ul>
                             <li>label - determines the item's label.</li>
                             <li>value -  determines the item's value.</li>
                             <li>disabled - determines whether the item is enabled/disabled.</li>
                             <li>checked - determines whether item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - determines the item's display html. This can be used instead of label.</li>
                             <li>group - determines the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>disableItem</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('disableItem', "jQuery" ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/VGUq5/">disables an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span70'>disableAt</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Disables an item by index. Index is a number.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>disableAt</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('disableAt', 8 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/WZNnr/">disables an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span75'>enableItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Enables an item. Item is an Object.
                            </p>
                            <br />
                            The following fields can be used for the item:
                         <ul>
                             <li>label - determines the item's label.</li>
                             <li>value -  determines the item's value.</li>
                             <li>disabled - determines whether the item is enabled/disabled.</li>
                             <li>checked - determines whether item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - determines the item's display html. This can be used instead of label.</li>
                             <li>group - determines the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>enableItem</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('enableItem', "jQuery" ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/7Yna9/">enables an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span76'>enableAt</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Enables a disabled item by index. Index is a number.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>enableAt</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('enableAt', 3 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/8BgGn/">enables an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span19'>ensureVisible</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Ensures that an item is visible. index is number. When necessary, the jqxDropDownList
                             scrolls to the item to make it visible.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>ensureVisible</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('ensureVisible', 2 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/d3FgU/">ensures the visibility of an items in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span58'>focus</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets the focus to the widget.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>focus</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('focus');</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/FndA6/">focuses the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span20'>getItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Gets item by index. The returned value is an Object with the following fields:
                            </p>
                            <ul>
                                <li>label - gets item's label.</li>
                                <li>value - gets the item's value.</li>
                                <li>disabled - gets whether the item is enabled/disabled.</li>
                                <li>checked - gets whether the item is checked/unchecked.</li>
                                <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                                <li>html - gets the item's display html. This can be used instead of label.</li>
                                <li>index - gets the item's index.</li>
                                <li>group - gets the item's group.</li>
                            </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>getItem</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>var item = $("#jqxDropDownList").jqxDropDownList('getItem', 1 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/Gp7N8/">gets the an items by its index in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span61'>getItemByValue</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Gets an item by its value. The returned value is an Object with the following fields:
                            </p>
                            <ul>
                                <li>label - gets item's label.</li>
                                <li>value - gets the item's value.</li>
                                <li>disabled - gets whether the item is enabled/disabled.</li>
                                <li>checked - gets whether the item is checked/unchecked.</li>
                                <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                                <li>html - gets the item's display html. This can be used instead of label.</li>
                                <li>index - gets the item's index.</li>
                                <li>group - gets the item's group.</li>
                            </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>itemValue</em></td>
                                            <td>String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>getItemByValue</code> method.
                            </p>
                            <pre><code>// @param Value</code></pre>
                            <pre><code>var item = $("#jqxDropDownList").jqxDropDownList('getItemByValue', "Bon app'");</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/6VsWb/">gets the an items by its value in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span28'>getItems</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Gets all items. The returned value is an array of Items.
                            </p>
                            Each item represents an Object with the following fields.
                         <br />
                            Item Fields
                         <ul>
                             <li>label - gets item's label.</li>
                             <li>value - gets the item's value.</li>
                             <li>disabled - gets whether the item is enabled/disabled.</li>
                             <li>checked - gets whether the item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - gets the item's display html. This can be used instead of label.</li>
                             <li>index - gets the item's index.</li>
                             <li>group - gets the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>Array</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>getItems</code> method.
                            </p>
                            <pre><code>var items = $("#jqxDropDownList").jqxDropDownList('getItems'); </code></pre>
                            Get the first item.
                         <pre><code>var items = $("#jqxDropDownList").jqxDropDownList('getItems'); var firstItem = items[0];</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/gZW9b/">returns an Array of all items and displays the first 2 of them   </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span53'>getCheckedItems</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Gets the checked items. The returned value is an array of Items.
                            </p>
                            Each item represents an Object with the following fields.
                         <br />
                            Item Fields
                         <ul>
                             <li>label - gets item's label.</li>
                             <li>value - gets the item's value.</li>
                             <li>disabled - gets whether the item is enabled/disabled.</li>
                             <li>checked - gets whether the item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - gets the item's display html. This can be used instead of label.</li>
                             <li>index - gets the item's index.</li>
                             <li>group - gets the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>Array</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>getCheckedItems</code> method.
                            </p>
                            <pre><code>var items = $("#jqxDropDownList").jqxDropDownList('getCheckedItems'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/AgNYz/">returns an Array of all checked items and displays first 2 of them    </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span33'>getSelectedItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Gets the selected item. The returned value is an Object or null(if there is no selected item).
                            </p>
                            Item Fields
                         <ul>
                             <li>label - gets item's label.</li>
                             <li>value - gets the item's value.</li>
                             <li>disabled - gets whether the item is enabled/disabled.</li>
                             <li>checked - gets whether the item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - gets the item's display html. This can be used instead of label.</li>
                             <li>index - gets the item's index.</li>
                             <li>group - gets the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>Object</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>getSelectedItem</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>var item = $("#jqxDropDownList").jqxDropDownList('getSelectedItem'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/4DhJf/">returns the selected item and displays it  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span34'>getSelectedIndex</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Gets the index of the selected item. The returned value is the index of the selected item. If there's no selected item, -1 is returned.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>Number</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>getSelectedIndex</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>var index = $("#jqxDropDownList").jqxDropDownList('getSelectedIndex'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/ESFzB/">returns the selected item's index and displays it  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span37'>insertAt</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Inserts a new item to the jqxDropDownList. Returns 'true', if the new item is inserted or false if the insertaion fails.  The first parameter is Object or String - the new item. The second parameter is Number - the item's index.
                            </p>
                            The following fields can be used for the new item:
                         <ul>
                             <li>label - determines the item's label.</li>
                             <li>value -  determines the item's value.</li>
                             <li>disabled - determines whether the item is enabled/disabled.</li>
                             <li>checked - determines whether item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - determines the item's display html. This can be used instead of label.</li>
                             <li>group - determines the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                                                         
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>insertAt</code> method.
                            </p>
                            <pre><code>// @param String</code></pre>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('insertAt', 'jQuery', 1 ); </code></pre>
                            <h4>Code example 2</h4>
                            <p>
                                Invoke the <code>insertAt</code> method.
                            </p>
                            <pre><code>// @param Object</code></pre>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('insertAt', '{ label: 'Text' value: 'Id'}, 1 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/sJDh6/">inserts an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span69'>isOpened</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Returns true, if the popup is opened. Otherwise returns false.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>Boolean</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>isOpened</code> method.
                            </p>
                            <pre><code>var opened = $("#jqxDropDownList").jqxDropDownList('isOpened' ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/jXTmv/">check whether the jqxDropDownList is opened </a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span45'>indeterminateIndex</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                indeterminates a list item when the 'checkboxes' property value is true. The index is zero-based, i.e to indeterminate the first item, the 'indeterminateIndex' method should be called with parameter 0.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>indeterminateIndex</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('indeterminateIndex', 0); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/UpWf8/">indeterminate a box in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span66'>indeterminateItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Indeterminates an item.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>indeterminateItem</code> method.
                            </p>
                            <pre><code>// @param list Item</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('indeterminateItem', item ); </code></pre>
                            *To get an item, use the getItem or getItemByValue methods.
                         <br />
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/pqMYX/">indeterminate an item in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span51'>loadFromSelect</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Loads list items from a 'select' tag.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>id</em></td>
                                            <td>String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the loadFromSelect method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('loadFromSelect', 'select');</code></pre>
                            <br />
                            'select' is the id of a select tag.
                         Code Example:
                         <pre style='margin: 10px;' class='code'>   <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;select style=<span style=" clear: both; padding: 0px; margin: 0px; color: #a24;">'height: 25px; width: 200px; margin-left: 30px;' id='select'</span>&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Affogato<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Americano<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Bicerin<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Breve<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Café Bombón<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Caffé Corretto<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Café Crema<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Caffé Latte<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Caffé macchiato<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Café mélange<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Coffee milk<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Cafe mocha<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Cappuccino<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Carajillo<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Cuban espresso<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Espresso<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>The Flat White<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Frappuccino<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Galao<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Greek frappé coffee<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Iced Coffee<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Indian filter coffee<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Instant coffee<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Irish coffee<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                    <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;option&gt;</span>Liqueur coffee<span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/option&gt;</span><div />                <span style="clear: both; padding: 0px; margin: 0px; color: #11a;">&lt;/select&gt;</span><div /></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/Syj3g/">loads list items from a 'select' tag.</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span24'>open</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Shows the popup listbox.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>open</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('open' ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/w5Syg/">opens the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span71'>removeItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Removes an item from the listbox. Parameter type: Object returned by the "getItem" method or String - the value of an item. Returns 'true', if the item is removed or 'false', if the
                             item is not removed.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>removeItem</code> method.
                            </p>
                            <pre><code>// @param Object</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('removeItem', "List Item" ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/FGs2y/">removes an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span21'>removeAt</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Removes an item from the listbox. Parameter type: Number - the index of the item. The method returns 'true', if the item is removed or 'false', if the
                             item is not removed.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>removeAt</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('removeAt', 3 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/yaErM/">removes an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span25'>selectIndex</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Selects an item by index. The index is zero-based, i.e to select the first item, the 'selectIndex' method should be called with parameter 0.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>selectIndex</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('selectIndex', 0 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/RemY9/">select an item by its index in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span60'>selectItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Selects an item.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>selectItem</code> method.
                            </p>
                            <pre><code>// @param List Item</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('selectItem', item ); </code></pre>
                            <br />
                            *To get an item, use the getItem or getItemByValue methods.
                         <div style="padding-bottom: 5px;">
                             <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/MysU4/">select an item in the jqxDropDownList  </a>
                         </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span49'>setContent</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets the content of the DropDownList.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>content</em></td>
                                            <td>String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>setContent</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('setContent', 'My Content'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/RWh8c/">sets the content in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span72'>updateItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Updates an item. The first parameter is the new item. The second parameter could be an existing item or the value of an existing item.
                            </p>
                            <br />
                            The following fields can be used for the item:
                         <ul>
                             <li>label - determines the item's label.</li>
                             <li>value -  determines the item's value.</li>
                             <li>disabled - determines whether the item is enabled/disabled.</li>
                             <li>checked - determines whether item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - determines the item's display html. This can be used instead of label.</li>
                             <li>group - determines the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>newItem</em></td>
                                            <td>Object</td>
                                            <td></td>
                                        </tr>         
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                                                         
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>updateItem</code> method.
                            </p>
                            <pre><code>// @param Object</code></pre>
                            <pre><code>// @param Object</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('updateItem', { label: "Text", value: "Id1" }, "Antonio Moreno Taquera");</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/VwxqY/">updates an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span35'>updateAt</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Updates an item. The first parameter is the new item. The second parameter is the index of the item to be updated.
                            </p>
                            <br />
                            The following fields can be used for the item:
                         <ul>
                             <li>label - determines the item's label.</li>
                             <li>value -  determines the item's value.</li>
                             <li>disabled - determines whether the item is enabled/disabled.</li>
                             <li>checked - determines whether item is checked/unchecked.</li>
                             <li>hasThreeStates - determines whether the item's checkbox supports three states.</li>
                             <li>html - determines the item's display html. This can be used instead of label.</li>
                             <li>group - determines the item's group.</li>
                         </ul>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object</td>
                                            <td></td>
                                        </tr>         
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                                                         
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>updateAt</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('updateAt', { label: "Text", value: "Id1" }, 3 );</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/b4bYe/">updates an item in the jqxDropDownList </a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span44'>unselectIndex</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Unselects item by index. The index is zero-based, i.e to unselect the first item, the 'unselectIndex' method should be called with parameter 0.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>unselectIndex</code> method.
                            </p>
                            <pre><code>// @param Number</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('unselectIndex', 5 ); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/AwAhC/">unselect an item by its index in the jqxDropDownList  </a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span63'>unselectItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Unselects an item.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>item</em></td>
                                            <td>Object/String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>unselectItem</code> method.
                            </p>
                            <pre><code>// @param List Item</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('unselectItem', item ); </code></pre>
                            <br />
                            *To get an item, use the getItem or getItemByValue methods.
                         <div style="padding-bottom: 5px;">
                             <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/Z9yHu/">unselect an item in the jqxDropDownList  </a>
                         </div>
                        </div>
                    </td>
                </tr>


                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span47'>uncheckIndex</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Unchecks a list item when the 'checkboxes' property value is true. The index is zero-based, i.e to uncheck the first item, the 'uncheckIndex' method should be called with parameter 0.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>index</em></td>
                                            <td>Number</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>uncheckIndex</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('uncheckIndex', 0); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/UV4dc/">unchecks a box in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span65'>uncheckItem</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Unchecks an item.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>uncheckItem</code> method.
                            </p>
                            <pre><code>// @param list Item</code></pre>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('uncheckItem', item ); </code></pre>
                            *To get an item, use the getItem or getItemByValue methods.
                         <br />
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/Jnapz/">unchecks an item in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>

                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span59'>uncheckAll</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Unchecks all list items when the 'checkboxes' property value is true.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>None</em></td>
                                            <td></td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>None</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>uncheckAll</code> method.
                            </p>
                            <pre><code>$("#jqxDropDownList").jqxDropDownList('uncheckAll'); </code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/BV2Zy/">unchecks all of the items in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>



                <tr>
                    <td class="documentation-option-type-click">
                        <span id='Span81'>val</span>
                    </td>
                    <td>
                        <span>Method</span>
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td colspan='3' style='width: 100%'>
                        <div class="documentation-option-description property-content" style="display: none;">
                            <p>
                                Sets or gets the selected value.
                            </p>
                            <div class="methodArgs">
                                <table class="arguments">
                                    <tbody>
                                        <tr>
                                            <th>Parameter</th>
                                            <th>Type</th>
                                            <th>Description</th>
                                        </tr>
                                        <tr>
                                            <td><em>value</em></td>
                                            <td>String</td>
                                            <td></td>
                                        </tr>                                  
                                    </tbody>
                                </table>
                                <strong>Return Value</strong><br /> 
                                <em>String</em>
                            </div>
                            <h4>Code example</h4>
                            <p>
                                Invoke the <code>val</code> method.
                            </p>
                            // Get the value.
                         <pre><code>var value = $("#jqxDropDownList").jqxDropDownList('val');</code></pre>
                            // Get the value using jQuery's val()
                         <pre><code>var value = $("#jqxDropDownList").val();</code></pre>
                            // Set value.
                         <pre><code>$("#jqxDropDownList").jqxDropDownList('val', 'New Value');</code></pre>
                            // Set value using jQuery's val().
                         <pre><code>$("#jqxDropDownList").val('New Value');</code></pre>
                            <div style="padding-bottom: 5px;">
                                <em>Try it:</em> <a target="_blank" href="http://jsfiddle.net/jqwidgets/w4Wqk/">sets or gets the selected value in the jqxDropDownList</a>
                            </div>
                        </div>
                    </td>
                </tr>
            </table>
            <br />
        </div>
    <br />
</body>
</html>