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

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

Create, Remove or Update many Grid Rows

In the latest version, we enhanced the jqxGrid’s ‘beginupdate’ and ‘resumeupdate’ methods. The enhancement enables you to add, remove or update many grid rows at once, without a performance impact. The Grid will be updated after you call the ‘resumeupdate’ … 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, jqxGrid
, , , , , , , , , , , , , , , , ,

Leave a comment

jQuery Grid Cells Editing with PHP and MySQL

Today, we will show how to implement server-side editing with the jqxGrid widget. The Grid will request data from the server when it is initialized. The server-side script is going to deliver the data records in JSON format. We will … 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, jqxGrid, PHP
, , , , , , , , , , , , , , , , , , , , , , , , , , ,

Leave a comment

Use jQuery Grid Plugin in ASP .NET MVC

This article presents a simple example on how to use the jqxGrid plugin in ASP .NET MVC. The Grid uses “Ajax” calls to obtain the data from the server to display. In this example, the server code is implemented in … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxGrid
, , , , , , , ,

2 Comments

Build CRUD Web App with jQuery Grid using PHP and MySQL

In this post, we will show you how to use the jQuery Grid in CRUD application scenario and send INSERT, UPDATE and DELETE commands to the server to update a MySQL DataBase. The first step is to create the file … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxGrid
, , , , , , , , , , , , , , , , , , ,

Leave a comment

jQuery Grid Filtering using the Grid API

By reading this post, you will learn how to use the jQuery Grid API to filter the Grid data without the UI. jqxGrid has several methods that allow you to handle the data filtering – addfilter, removefilter, applyfilters and clearfilters. … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxGrid
, , , , , , , , , , , , , , , , , , , , , , ,

Leave a comment

jQuery Grid Filtering

In the latest release of jQWidgets, we improved the jQuery Grid widget by adding a new Filtering feature to it. Let’s see how to enable and disable this feature. To enable the Grid Filtering, you need to set the ‘filterable’ … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxGrid
, , , , , , , , , , , , , , , , ,

2 Comments

Bind jQuery Grid to MySql Database using PHP

In this post we will show you how to connect our jQuery Grid to MySql Database using PHP. We will obtain the data from MySql Database and especially the Northwind Database. You can download the Northwind database .sql script here … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jqxGrid
, , , , , , , , , , , , , , , , , ,

6 Comments

Binding jQuery Grid to JSON Data

Today, we will show you how to bind the jQuery Grid, called jqxGrid to a JSON data. Below is a sample JSON data that we want to use as a data source. In this post, we will assume that this … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxGrid
, , , , , , , , , , , , , , , , , , , ,

Leave a comment