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

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

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

One way drag and drop from a Grid to a Form

This post shows how to setup a one way drag and drop from a Grid to a Form. The user will be able to drag a Grid record and fill a Form by dropping the record over it. 1. Include … Continue reading
JavaScript UI Widgets, JavaScript Widgets, jqxGrid
, , , , , , , , , , , , , ,

Leave a comment

jqxDataAdapter Improvements coming with jQWidgets 2.2

In the next version of jQWidgets, the jqxDataAdapter plug-in will come with data binding improvements. These improvements will allow you to use the plug-in to populate the jqxTree or jqxMenu from JSON, JSONP, XML, CSV, TSV or Array. Let’s see … Continue reading
jQuery
, , , , , , , , ,

Leave a comment

jqxGrid with SQL Binding and LargeJsonResult

In this post, we will use in the data binding a custom JsonResult Class for ASP.Net MVC to avoid MaxJsonLength Exceeded Exception. The class is called LargeJsonResult. Here’s its implementation: using System;using System.Web.Script.Serialization;namespace System.Web.Mvc{ public class LargeJsonResult : JsonResult { … Continue reading
ASP .NET, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jqxGrid
, , , , , , , , , , , , , , ,

Leave a comment

Color Picker

In this post, we will illustrate you how to add our new ColorPicker widget, called jqxColorPicker to your page. 1. The first step is to include the javascript and css files required by the Color Picker. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” … Continue reading
JavaScript UI, jQuery UI, jQuery UI Plugins, jQuery UI Widgets
, , , , , , , , ,

Leave a comment

Splitter Collapsible Panel

In this post we will show you how to change the default collapsible panel of the jqxSplitter widget. The following code creates a basic Splitter with two Panels. <!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.7.2.min.js”></script> <script … Continue reading
JavaScript, JavaScript Plugins, JavaScript UI, JavaScript UI Plugins, JavaScript UI Widgets, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxSplitter
, , , , , , , , , , ,

Leave a comment

Nested Splitters with Auto Size behavior

In this post, we will illustrate you how to create a web page with nested splitters that adjust their size to fill the bounds of the browser window. The sample has one horizontal splliter with three split panels – ‘North’, … Continue reading
JavaScript, JavaScript Plugins, JavaScript UI, JavaScript UI Plugins, JavaScript UI Widgets, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxSplitter
, , , , , , , , , , , , , , , , , , ,

Comments Off on Nested Splitters with Auto Size behavior

Bind jQuery ComboBox to MySql Database using PHP

In this post, we will show you how to connect our jQuery ComboBox, called jqxComboBox to MySql Database using PHP. We will obtain the data from MySql Database and especially the Northwind Database. The first thing we need to do … Continue reading
JavaScript, JavaScript Plugins, JavaScript UI, JavaScript UI Plugins, JavaScript UI Widgets, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxComboBox, PHP
, , , , , , , , , , , , , , , ,

Leave a comment