UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

43 lines (36 loc) 1.71 kB
<!DOCTYPE html> <html lang="en"> <head> <meta name="keywords" content="jQuery DropDownList, List, ListBox, Popup List, jqxDropDownList, jqxListBox, List Widget, ListBox Widget, DropDownList Widget" /> <meta name="description" content="The DropDownList represents a widget that contains a list of selectable items displayed in a drop-down. The sample uses DropDownList's Typescript definitions'" /> <title id='Description'> DropDownList is a widget that contains a list of selectable items displayed in a drop-down. TypeScript example. </title> <!-- 1. Load references --> <script src="../../../scripts/jquery-1.11.1.min.js"></script> <script src="../../../jqwidgets/jqxcore.js"></script> <script src="../../../jqwidgets/jqxbuttons.js"></script> <script src="../../../jqwidgets/jqxscrollbar.js"></script> <script src="../../../jqwidgets/jqxlistbox.js"></script> <script src="../../../jqwidgets/jqxdropdownlist.js"></script> <script src="typescript-dropdownlist.js"></script> <link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../../scripts/demos.js"></script> <!-- 2. Create initialization --> <script> $(document).ready(function () { createDropDownList('#jqxWidget'); }); </script> </head> <!-- 3. Display the application --> <body> <div class="example-description"> DropDownList is a widget that contains a list of selectable items displayed in a drop-down. TypeScript example. </div> <div id="jqxWidget"></div> </body> </html>