Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • jQuery Tutorial
  • jQuery Selectors
  • jQuery Events
  • jQuery Effects
  • jQuery Traversing
  • jQuery HTML & CSS
  • jQuery AJAX
  • jQuery Properties
  • jQuery Examples
  • jQuery Interview Questions
  • jQuery Plugins
  • jQuery Cheat Sheet
  • jQuery UI
  • jQuery Mobile
  • jQWidgets
  • Easy UI
  • Web Technology
Open In App
Next Article:
jQWidgets Introduction
Next article icon

jQWidgets

Last Updated : 15 Jul, 2024
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 widgets that help to create attractive UI designs.

jQWidgets Tutorial

Download and Install jQWidgets

  • Download the jQWidget file in zip format from the https://www.jqwidgets.com/download/ 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.
jQWidgets

Installing jQWidgets using 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

Installing the jQWidgets Bower Package:

  • Open Node.js command prompt and run the following command -
    bower install jqwidgets
  • To get the information of jQWidget bower package, use the following command
    bower info jqwidgets

Example: This example describe the basic example. In this example, we will use jqxCalendar widget to create a calendar and added the back text on it using backText Property.

HTML
<!DOCTYPE html> <html lang="en">   <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/jqxdatetimeinput.js"></script>     <script type="text/javascript"             src="jqwidgets/jqxcalendar.js"></script>     <script type="text/javascript"             src="jqwidgets/globalization/globalize.js"></script>     <script tyle="text/javascript"             src="jqwidgets/jqx-all.js"></script> </head>   <body>     <center>         <h1 style="color: green;">             GeeksforGeeks         </h1>           <h3>             jQWidgets jqxCalendar backText Property         </h3>           <div id='jqxcal'></div>     </center>       <script type="text/javascript">         $(document).ready(function () {             $("#jqxcal").jqxCalendar({                 theme: 'energyblue',                 width: '400px',                 height: '300px',                 enableTooltips: true,                 backText: 'Back Option'             });         });     </script> </body>   </html> 

Output:

backText property

jQWidgets Complete References

  • jQWidget jqxBarGauge
  • jQWidget jqxBulletChart
  • jQWidget jqxButton
  • jQWidget jqxCalendar
  • jQWidget jqxChart
  • jQWidget jqxCheckBox
  • jQWidget jqxColorPicker
  • jQWidget jqxComboBox
  • jQWidget jqxComplexInput
  • jQWidget jqxDataTable
  • jQWidget jqxDateTimeInput
  • jQWidget jqxDocking
  • jQWidget jqxDragDrop
  • jQWidget jqxDropDownList
  • jQWidget jqxEditor
  • jQWidget jqxExpander
  • jQWidget jqxFileUpload
  • jQWidget jqxForm
  • jQWidget jqxFormattedInput
  • jQWidget jqxGauge
  • jQWidget jqxGrid
  • jQWidget jqxHeatMap
  • jQWidget jqxInput
  • jQWidget jqxKnob
  • jQWidget jqxListBox
  • jQWidget jqxListMenu
  • jQWidget jqxLoader
  • jQWidget jqxMaskedInput
  • jQWidget jqxMenu
  • jQWidget jqxNavBar
  • jQWidget jqxNavigationBar
  • jQWidget jqxNotification
  • jQWidget jqxNumberInput
  • jQWidget jqxPasswordInput
  • jQWidget jqxPopover
  • jQWidget jqxProgressBar
  • jQWidget jqxRadioButton
  • jQWidget jqxRangeSelector
  • jQWidget jqxRating
  • jQWidget jqxResponsivePanel
  • jQWidget jqxRibbon
  • jQWidget jqxScheduler
  • jQWidget jqxScrollBar
  • jQWidget jqxScrollView
  • jQWidget jqxSlider
  • jQWidget jqxSortable
  • jQWidget jqxSplitter
  • jQWidget jqxTabs
  • jQWidget jqxTagCloud
  • jQWidget jqxTextArea
  • jQWidget jqxTimePicker
  • jQWidget jqxToolBar
  • jQWidget jqxTooltip
  • jQWidget jqxTouch
  • jQWidget jqxTree
  • jQWidget jqxTreeGrid
  • jQWidget jqxTreeMap
  • jQWidget jqxValidator
  • jQWidget jqxWindow

Next Article
jQWidgets Introduction

H

hardiksm73
Improve
Article Tags :
  • Web Technologies
  • 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
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences