jQWidgets Introduction Last Updated : 16 Dec, 2021 Comments Improve Suggest changes Like Article Like Report jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. It has more than 60 UI widget that helps to create attractive UI design. Why jQWidgets? jQWidgets is platform-independent, cross-browser compatible and works on different devices like mobile, tablets and PCs. It automatically detects the device type and browser version. It is small in size and highly extensible. We can load the individual widgets and themes on demand in order to optimize the download time and save memory. All the jQWidgets are optimized for better user experience to work with the different devices having different operating systems and browsers version. Download and Installation: There are following two ways of installing jQWidgets. Method 1: Download jQWidget file in zip format from the below link. After downloading the zip file, extract the files and save them into the folder. After that create a new HTML file and add the jQWidget code into the file and include the widget link inside the head section. https://www.jqwidgets.com/download/ Method 2: Installing jQWidgets using npm. Make sure that you have installed Node.js and npm. Open Node.js command prompt and run the following command – npm install jqwidgets-framework - demos & scripts or npm install jqwidgets-scripts - scripts or npm install jqwidgets-ng - angular modules To get the information of jQWidget npm package, use the following command – npm info jqwidgets-framework Let's understand the working of JQWidgets through an example. Example: The below example illustrates the jqxButton disabled property in jQWidgets. HTML <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <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="jqwidgets/jqxbuttons.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxButton disabled Property </h3> <br /> <input type="button" id="jqxBtn" style="padding: 5px 20px;" value="Click here" /> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxBtn").jqxButton({ width: "100px", height: "60px", disabled: true, }); var d = $("#jqxBtn").jqxButton("disabled"); $("#log").text("Button disabled: " + d); }); </script> </body> </html> Output: Comment More infoAdvertise with us Next Article jQWidgets jqxGrid Complete Reference K kartik Follow Improve Article Tags : Web Technologies JQuery jQuery-jQWidgets Similar Reads jQWidgets jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. It has more than 60 UI widgets that help to create attractive UI designs. Download and Install jQWidgets Downloa 2 min read jQWidgets Introduction jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. It has more than 60 UI widget that helps to create attractive UI design. Why jQWidgets? jQWidgets is platform-in 2 min read jQWidgets jqxGrid Complete Reference The jqxGrid is used to illustrate a jQuery widget that shows data in tabular form. Moreover, it renders full support for connecting with data, as well as paging, grouping, sorting, filtering, and editing. Property: jQWidgets jqxGrid altrows PropertyjQWidgets jqxGrid altstart PropertyjQWidgets jqxGri 4 min read jQWidgets jqxChart Complete Reference The jqxChart is a lightweight and powerful chart widget written 100% in JavaScript. It offers many advanced features and supports three different rendering technologies â SVG, HTML5 Canvas & VML. Properties: jQWidgets jqxChart animationDuration PropertyjQWidgets jqxChart borderLineColor Property 1 min read jQWidgets jqxScheduler Complete Reference The jqxScheduler widget is used to show a set of appointments in days, weeks, months, timeline day, timeline week as well as timeline month views. Properties: jQWidgets jqxScheduler appointmentOpacity PropertyjQWidgets jqxScheduler appointmentsMinHeight PropertyjQWidgets jqxScheduler appointmentData 2 min read jQWidgets jqxTreeGrid Complete Reference The jqxTreeGrid is used for representing data in a tree-like structure. This widget is useful for displaying multi-column of hierarchical data, data paging, sorting and filtering, data editing, column resizing, fixed columns, conditional formatting, aggregates, and rows selection. These widgets also 2 min read jQWidgets jqxDataTable Complete Reference The jqxDataTable widget is used for reading and displaying the data from the HTML Table. This is also used to display data from various data sources like XML, JSON, Array, CSV, or TSV. Property: jQWidgets jqxDataTable altRows PropertyjQWidgets jqxDataTable aggregatesHeight Property jQWidgets jqxData 2 min read jQWidgets jqxTreeMap Complete Reference The jqxTreeMap displays hierarchical data as a set of nested rectangles. Each branch of the tree is given a rectangle, which is then tiled with smaller rectangles representing sub-branches. A leaf node's rectangle has an area proportional to a specified dimension on the data. Properties: jQWidgets j 1 min read jQWidgets jqxEditor Complete Reference The jqxEditor represents an HTML text editor which will create web content easily and can replace your HTML Text Areas. Properties: jQWidgets jqxEditor disabled PropertyjQWidgets jqxEditor editable Property jQWidgets jqxEditor focus() MethodjQWidgets jqxEditor height PropertyjQWidgets jqxEditor line 1 min read jQWidgets jqxRibbon Complete Reference The jqxRibbon widget is used as a tabbed toolbar or mega menu which will only work when you add JavaScript files. Properties: jQWidgets jqxRibbon animationDelay PropertyjQWidgets jqxRibbon animationType PropertyjQWidgets jqxRibbon disabled PropertyjQWidgets jqxRibbon initContent PropertyjQWidgets jq 1 min read Like