Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is JQGrid free?

Tags:

Download JQGrid js file from http://www.trirand.com/blog/ . Is it free?

What is this http://www.trirand.net/demoaspnetmvc.aspx ? . I see price and license.

Someone clarify please.

like image 818
Pirzada Avatar asked Dec 14 '10 13:12

Pirzada


People also ask

What does jqGrid do?

jqGrid is an Ajax-enabled JavaScript control that provides solutions for representing and manipulating tabular data on the web.

What is pager in jqGrid?

Definition. The Navigation Bar, also known as the pager, is enabled by placing a <div> right after the <table> definition in your HTML . Note that it is a <div>, not a <table>. Then, you identify the <div> to your grid by placing the name of the div in the grid setting called “pager”.

What is jquery grid?

The jquery grid component delivers advanced data visualization features and built-in support for client and server-side paging, editing, sorting and filtering. You can use the Grid with frameworks like Angular and ReactJS.


1 Answers

There are two versions of jqGrid: Free, Open Source package as pure JavaScript solution delivered with GPL & MIT licenses and commercial which is integrated in for example Visual Studio development environment. You can use any from the versions in your ASP.NET MVC Project.

jqGrid can be used to fill data from almost any web service providing data in JSON or XML format. So you can write in ASP.NET MVC a Controller method which provide pure data in the JSON format and use View with empty <table> having only an id attribute defined. If you want you can implement the "data provider" as ASMX or WCF service. You can also combine any from the solutions in one site, so you will be free in the implementation.

Look at the other question where you can find some links with examples of the usage of jqGrid with ASP.NET MVC.

UPDATE: The answer is old and the licence agreement is changed now. The there exist two main forks of jqGrid: 1) free jqGrid, the fork, which I develop since the end of 2014 and which I provide under the old MIT/GPLv2 licence; 2) Guriddo jqGrid JS, available for the prices. You can read more detailed about the problem in the following more recent answers: this one, this one and this one.

like image 159
Oleg Avatar answered Jan 27 '23 19:01

Oleg