jqGrid - 免费许可证
jqGrid - Free License
全部,
过去几年我一直在积极使用 jqGrid,现在我需要它来满足需求。貌似名字改成了Gurrido JQGrid,好像是行货版。
如果我不能再将 jqgrid 用于商业目的,你能告诉我吗?
我至少可以使用以前版本的 jqGrid 吗?请告诉我..
谢谢!
更新:粘贴代码片段
<script type="text/javascript">
$(document).ready(function(){
$("#submitbutton1").click(function(){
jQuery("#listTable").jqGrid({
url:'/WebTest/MainAction.do',
datatype: "json",
colNames: ['Label','Value'],
colModel: [
{name:'label',index:'label'},
{name:'value',index:'value'}
],
autowidth : true,
//iconSet: "fontAwesome",
//showOneSortIcon: true,
//autoResizing: { compact: true, widthOfVisiblePartOfSortIcon: 13 },
//autoresizeOnLoad: true,
rowNum: 10,
rowList: [5, 10, 20, "10000:All"],
viewrecords: true,
pager: true,
toppager: true,
rownumbers: true,
sortname: "label",
sortorder: "desc",
caption: "Test"
}).jqGrid("navGrid", { view: true, cloneToTop: true})
.jqGrid("inlineNav")
.jqGrid("filterToolbar")
.jqGrid("gridResize");
})
})
</script>
<html >
<head>
<!-- <link rel="stylesheet" type="text/css" media="screen" href="../font-awesome/css/font-awesome.min.css"> -->
<link rel="stylesheet" type="text/css" media="screen" href="../themes/ui-lightness/jquery-ui-1.10.4.custom.css" />
<link rel="stylesheet" type="text/css" media="screen" href="../css/ui.jqgrid.min.css" />
<!-- <link rel="stylesheet" type="text/css" media="screen" href="../css/searchFilter.css" /> -->
<!-- <link rel="stylesheet" type="text/css" media="screen" href="../css/ui.multiselect.css" /> -->
<script src="../js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="../js/jquery-ui-1.10.4.custom.min.js" type="text/javascript"></script>
<script src="../js/i18n/grid.locale-en.js" type="text/javascript"></script>
<script type="text/javascript">
$.jgrid.no_legacy_api = true;
$.jgrid.useJSON = true;
</script>
<script src="../js/jquery.jqgrid.min.js" type="text/javascript"></script> <!-- Version took from free jqgrid github -->
</head>
<title>Test</title>
<body bgcolor="white">
<br>
Hi this is the Test file
<input type="button" name="submitbutton1" id="submitbutton1" value="Test">
<br/>
<div id="outerDiv" style="margin:5px;">
<table id="list"></table>
<!--<div id="pager"></div>-->
</div>
// Tried this also, but its the same. Please note I have removed the iconSet as well.
<table id="listTable"></table>
<div id="pager"></div>
</body>
</html>
不能更改以前发布的 jqGrid 版本的许可证。因此,如果您加载了一次其中包含 "Dual licensed under the MIT and GPL licenses" 注释的代码,那么您可以在许可下使用它。
在 MIT 或 GPLv2 许可下,可以免费使用 jqGrid 直到(包括)4.7 的所有版本。您可以从 github (see the license statement here).
下载
4.7.1 版在 4.7 版发布后不久发布,有了新的许可证。从 4.7.1 开始,最好为产品使用另一个名称:"Guriddo jqGrid JS"。您可以阅读 here 更多关于 Guriddo jqGrid JS 的价格和条件的信息。
MIT 和 GPLv2 许可证允许修改 代码持有对以前版本作者的引用作为基础。因此,我以 free jqGrid 的名称开始了基于 jqGrid 4.7 的 jqGrid 的新分支。可以从 github 下载 here. The readme and the wiki provide additional information about new features which I implemented. I published the first release 4.8 of free jqGrid at 4 Mar 2015. I provided the version over NuGet, npm and bower additionally to the way to download the sources directly from GitHub. I posted the code additionally to different CDNs (see the wiki article) 以简化使用。
我计划很快发布免费的 jqGrid 4.9。我将在接下来的几天 post beta 版本,但您可以随时使用 githib 中的版本。它始终包括从当前代码生成的 jquery.jqgrid.min.js
、jquery.jqgrid.src.js
和 jquery.jqgrid.min.map
。
所以你可以像名字一样免费使用免费的 jqGrid。我只要求在 Whosebug 上将错误报告为 github issue 或 post 。如果您 post 关于 Whosebug 上关于免费 jqGrid 的问题,请同时使用 "jqgrid" 和 "free-jqgrid" 选项卡。
顺便说一下,wiki 是为写作而开放的。因此,如果有人想将现有文章的文本改进为 post 新文章,欢迎您!
全部, 过去几年我一直在积极使用 jqGrid,现在我需要它来满足需求。貌似名字改成了Gurrido JQGrid,好像是行货版。
如果我不能再将 jqgrid 用于商业目的,你能告诉我吗? 我至少可以使用以前版本的 jqGrid 吗?请告诉我..
谢谢!
更新:粘贴代码片段
<script type="text/javascript">
$(document).ready(function(){
$("#submitbutton1").click(function(){
jQuery("#listTable").jqGrid({
url:'/WebTest/MainAction.do',
datatype: "json",
colNames: ['Label','Value'],
colModel: [
{name:'label',index:'label'},
{name:'value',index:'value'}
],
autowidth : true,
//iconSet: "fontAwesome",
//showOneSortIcon: true,
//autoResizing: { compact: true, widthOfVisiblePartOfSortIcon: 13 },
//autoresizeOnLoad: true,
rowNum: 10,
rowList: [5, 10, 20, "10000:All"],
viewrecords: true,
pager: true,
toppager: true,
rownumbers: true,
sortname: "label",
sortorder: "desc",
caption: "Test"
}).jqGrid("navGrid", { view: true, cloneToTop: true})
.jqGrid("inlineNav")
.jqGrid("filterToolbar")
.jqGrid("gridResize");
})
})
</script>
<html >
<head>
<!-- <link rel="stylesheet" type="text/css" media="screen" href="../font-awesome/css/font-awesome.min.css"> -->
<link rel="stylesheet" type="text/css" media="screen" href="../themes/ui-lightness/jquery-ui-1.10.4.custom.css" />
<link rel="stylesheet" type="text/css" media="screen" href="../css/ui.jqgrid.min.css" />
<!-- <link rel="stylesheet" type="text/css" media="screen" href="../css/searchFilter.css" /> -->
<!-- <link rel="stylesheet" type="text/css" media="screen" href="../css/ui.multiselect.css" /> -->
<script src="../js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="../js/jquery-ui-1.10.4.custom.min.js" type="text/javascript"></script>
<script src="../js/i18n/grid.locale-en.js" type="text/javascript"></script>
<script type="text/javascript">
$.jgrid.no_legacy_api = true;
$.jgrid.useJSON = true;
</script>
<script src="../js/jquery.jqgrid.min.js" type="text/javascript"></script> <!-- Version took from free jqgrid github -->
</head>
<title>Test</title>
<body bgcolor="white">
<br>
Hi this is the Test file
<input type="button" name="submitbutton1" id="submitbutton1" value="Test">
<br/>
<div id="outerDiv" style="margin:5px;">
<table id="list"></table>
<!--<div id="pager"></div>-->
</div>
// Tried this also, but its the same. Please note I have removed the iconSet as well.
<table id="listTable"></table>
<div id="pager"></div>
</body>
</html>
不能更改以前发布的 jqGrid 版本的许可证。因此,如果您加载了一次其中包含 "Dual licensed under the MIT and GPL licenses" 注释的代码,那么您可以在许可下使用它。
在 MIT 或 GPLv2 许可下,可以免费使用 jqGrid 直到(包括)4.7 的所有版本。您可以从 github (see the license statement here).
下载4.7.1 版在 4.7 版发布后不久发布,有了新的许可证。从 4.7.1 开始,最好为产品使用另一个名称:"Guriddo jqGrid JS"。您可以阅读 here 更多关于 Guriddo jqGrid JS 的价格和条件的信息。
MIT 和 GPLv2 许可证允许修改 代码持有对以前版本作者的引用作为基础。因此,我以 free jqGrid 的名称开始了基于 jqGrid 4.7 的 jqGrid 的新分支。可以从 github 下载 here. The readme and the wiki provide additional information about new features which I implemented. I published the first release 4.8 of free jqGrid at 4 Mar 2015. I provided the version over NuGet, npm and bower additionally to the way to download the sources directly from GitHub. I posted the code additionally to different CDNs (see the wiki article) 以简化使用。
我计划很快发布免费的 jqGrid 4.9。我将在接下来的几天 post beta 版本,但您可以随时使用 githib 中的版本。它始终包括从当前代码生成的 jquery.jqgrid.min.js
、jquery.jqgrid.src.js
和 jquery.jqgrid.min.map
。
所以你可以像名字一样免费使用免费的 jqGrid。我只要求在 Whosebug 上将错误报告为 github issue 或 post 。如果您 post 关于 Whosebug 上关于免费 jqGrid 的问题,请同时使用 "jqgrid" 和 "free-jqgrid" 选项卡。
顺便说一下,wiki 是为写作而开放的。因此,如果有人想将现有文章的文本改进为 post 新文章,欢迎您!