UNPKG

jqwidgets-framework

Version:

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

50 lines (48 loc) 2.76 kB
<!DOCTYPE html> <html> <head> <title id="Description"> This demo shows the default functionality of jqxToolBar. This widget represents a toolbar where different tools (including widgets) can be automatically added. By default, jqxToolBar supports the widgets jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox and jqxInput. Custom tools can also be added. TypeScript example. </title> <meta name="description" content="This demo shows the default functionality of jqxToolBar. This widget represents a toolbar where different tools (including widgets) can be automatically added. By default, jqxToolBar supports the widgets jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox and jqxInput. Custom tools can also be added." /> <link type="text/css" rel="Stylesheet" href="../../../jqwidgets/styles/jqx.base.css" /> <link type="text/css" rel="Stylesheet" href="../../../jqwidgets/styles/jqx.arctic.css" /> <style type="text/css"> .buttonIcon { margin: -5px 0 0 -3px; width: 16px; height: 17px; } </style> <script type="text/javascript" src="../../../scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../../scripts/demos.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxdropdownlist.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcombobox.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxinput.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxtoolbar.js"></script> <script type="text/javascript" src="typescript-toolbar.js"></script> <script type="text/javascript" src="../../../scripts/demos.js"></script> <script> $(document).ready(function () { createToolBar('#jqxToolBar'); }); </script> </head> <body> <div class="example-description"> This demo shows the default functionality of jqxToolBar. This widget represents a toolbar where different tools (including widgets) can be automatically added. By default, jqxToolBar supports the widgets jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox and jqxInput. Custom tools can also be added. TypeScript example. </div> <div id="jqxToolBar"></div> </body> </html>