jQWidgets v5.3.0 Release

What’s Improved: – Widgets now use lower default z-index values. What’s Fixed: – Fixed an issue in jqxGrid regarding full row edit and tabbing. – Fixed an issue in jqxGrid ever present row when updatebounddata is called. – Fixed an … Continue reading
ANGULAR, Angular 2, ANGULAR GRID, Angular5, AngularJS, ASP .NET, ASP.NET Core Tag Helpers, ASP.NET Core Tag Helpers, Chart, custom elements, Grid, html elements, JavaScript, JavaScript Plugins, JavaScript UI, JavaScript UI Plugins, JavaScript UI Widgets, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxButton, jqxCalendar, jqxChart, jqxCheckBox, jqxComboBox, jqxDateTimeInput, jqxDock, jqxDropDownList, jqxExpander, jqxGrid, jqxInput, jqxListBox, jqxMaskedInput, jqxMenu, jqxNavigationBar, jqxNumberInput, jqxProgressBar, jqxRadioButton, jqxRating, jqxResponse, jqxRibbon, jqxScrollBar, jqxSlider, jqxSplitter, jqxTabs, jqxTooltip, jqxTree, jqxTreeMap, jqxValidator, jqxWindow, PHP, Pivot Grid, React, react grid, React Javascript Library, REACTJS, typescript, Uncategorized
, , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Leave a comment

jQWidgets 3.2.0

We are happy to announce the availability of jQWidgets ver. 3.2.0. What’s New: – Added help topics about using jQWidgets with WordPress, Joomla, BreezeJS, RequireJS and Twitter Bootstrap. – jqxTreeGrid and jqxDataTable Columns Reorder. – jqxTreeGrid, jqxDataTable and jqxTree Incremental … Continue reading
jQuery
, , , , , , ,

Leave a comment

jQWidgets 2.6

What’s New: – jqxChart Logarithmic Axis. – jqxInput widget. What’s Improved: – jqxGrid horizontal scrolling performance. – jqxChart text rotation attribute for the values along the y-axis. – jqxChart horizontal and vertical text alignment for the items along the x-axis … Continue reading
JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets
, , , , , , , , , , , ,

Leave a comment

Bar Chart

This blog post will illustrate what need to be done when you want to use the jqxChart as a Bar Chart. The code example below will create a basic Column Chart. <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><html lang=”en”><head> … Continue reading
JavaScript, jQuery, jqxChart
, , , , , , , , , , , , ,

Leave a comment

Auto Open and Close jqxDropDownList’s Popup

This blog post will show you how to use the jqxDropDownList’s API to implement auto open/close behavior. The widget’s popup should be opened when the mouse cursor is moved over it and should be closed when the mouse cursor leaves … Continue reading
JavaScript, jQuery, jQuery UI, jqxDropDownList
, , , , , , , , , , , , , ,

Leave a comment

Save jqxTabs selection with Cookies

1. Before the jqxTabs initialization, check for a saved index. If there’s index, set the jqxTabs ‘selectedItem’ property to point to the index. var index = $.jqx.cookie.cookie(“jqxTabs_jqxWidget”);if (undefined == index) index = 0;$(‘#jqxTabs’).jqxTabs({selectedItem: index, width: ‘90%’, height: 200, position: ‘top’, … Continue reading
JavaScript, jQuery, jqxTabs
, , , , , , , , , , , , ,

Leave a comment

Working with jqxSlider

In this post, we will demonstrate you how to add the jqxSlider widget to your web page and also how to get and set the Slider’s value. – Create a new html page and add links to the JavaScript files … Continue reading
jQuery, jQuery Plugins, jQuery UI Widgets, jQuery Widgets
, , , , , , , , ,

Leave a comment

Drag and Drop of a jQuery widget

In order to make an object to be draggable, you need to do the following: 1. Include jqxdragdrop.js in your page. 2. Select any HTML element with jQuery. 3. Call the jqxDragDrop constructor. The sample code below demonstrates how to … Continue reading
jQuery, jQuery Plugins, jQuery UI, jqxCalendar
, , , , , , , ,

Leave a comment

Load jqxMenu from Array

In this post, we will load the jqxMenu widget from an Array. 1. Create an array. The displayed text in the menu item is specified by the ‘label’ member. To add sub items to a Menu Item, we need to … Continue reading
JavaScript, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jqxMenu
, , , , , , ,

Leave a comment

Line and Column Chart Series

In this post, we will display a combination of Line and Column series in one Chart. The data that we will visualize is: var sampleData = [ { Day: ‘Monday’, Running: 30, Swimming: 0, Cycling: 25, Goal: 40 }, { … Continue reading
Uncategorized
, , , , , , , , , , , , , , , , , , , , , ,

Leave a comment