Html DropDownButton

Set the enableBrowserBoundsDetection property of the jqxDropDownButton. Author: http://jqwidgets.com

HTML

<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<div id='jqxWidget'>
    <div style='float: left;' id="dropDownButton">
        <div style="border: none;" id='jqxTree'>
            <ul>
                <li item-selected='true'>Home</li>
                <li item-expanded='true'>Solutions
                    <ul>
                        <li>Education</li>
                        <li>Solutions
                            <ul>
                                <li>eLearning</li>
                                <li>Mobile</li>
                            </ul>
                        </li>
                    </ul>
                </li>
                <li>Products
                    <ul>
                        <li>PC products</li>
                    </ul>
                </li>
            </ul>
        </div>
    </div>

JavaScript

$("#dropDownButton").jqxDropDownButton({
     width: 150,
     height: 19,
     theme: 'energyblue',
     enableBrowserBoundsDetection: true
 });
 $("#jqxTree").jqxTree({
     width: 150,
     theme: 'energyblue'
 });
 $("#dropDownButton").jqxDropDownButton('setContent', "Please Select");