본문 바로가기
Library & Framework/jqGrid

[jqGrid] 플러그인 다운로드 (ft. 무료버전)

by 썸머워즈 2020. 3. 7.
반응형

- jqGrid 플러그인 다운로드 -

(본 글은 기존 정리글은 상용버전으로 정리되었기때문에 무료 버전으로 다시 정리한것이다.)


jqGrid는 버전에 따라 유료/무료 버전이 나뉘어져 있어서 잘 보고 다운로드 받아야한다.

 

일단은 아래 사이트에가서 다운로드 받을수는 있다.

 

https://plugins.jquery.com/jqGrid/

 

jQuery jqGrid | jQuery Plugin Registry

jQuery jqGrid by Tony Tomov jqGrid is an Ajax-enabled JavaScript control that provides solutions for representing and manipulating tabular data on the web. Versions Version Date 4.6.0 Feb 20 2014 4.5.4 Oct 6 2013 4.5.2 May 21 2013 4.5.0 May 13 2013 4.4.5 A

plugins.jquery.com

위 사이트는 이상하게 크롬에서는 다운로드가 받아지질 않는다. (IE는 잘된다.)


4.6.0버전이 마지막 무료버전인것으로 알고있었는데, 알고보니 GURIDDO 공식홈에서는 2012년 12월까지 제작된것은 무료라고 말하고 있는것 같다. 그래서 12월달에 배포된 4.7.1버전이 존재한다는 것을 알았다.

 

v4.7.1 버전 다운로드

https://github.com/tonytomov/jqGrid/releases/tag/v4.7.1

 

Release v4.7.1 · tonytomov/jqGrid

jqGrid version 4.7.1

github.com

 

유/무료에 대해서는 아래 글에서 설명해주고 있으니 들어가서 확인해보자.

 

참고 : http://1004lucifer.blogspot.com/2019/04/jqgrid.html

 

[jqGrid] 버전에 따른 유/무료 라이선스 정책

  [ jqGrid 한글 API 문서 링크 ] 그리드(Grid) 제품중에 무료 라이선스를 지원하는 jqGrid 라는걸 사용하게 되었는데, 버전에 따라 유/무료 정책이 달라져 상업용으로 사용하려는 경우에 버전을 신경

1004lucifer.blogspot.com


zip파일을 받고 가져다가 사용하면 된다.

.js와 .css를 설정할때 주의해야할 점은 jqGrid는 jQeury 기반이기 때문에 꼭 jQuery를 그리드보다 먼저 선언해서 사용해 주어야 한다.

<link rel="stylesheet" type="text/css" href="/js/common/jquery/jquery-ui.min.css" />
<link rel="stylesheet" type="text/css" href="/jqGrid/css/ui.jqgrid.css" />
  
<script type="text/javascript" src="/js/common/jquery/jquery-3.2.1.min.js"></script>
<script src="/jqGrid/js/i18n/grid.locale-kr.js" type="text/javascript"></script>
<script src="/jqGrid/js/minified/jquery.jqGrid.min.js" type="text/javascript"></script>

 

그리고 실제로 jqGrid를 사용하게 되면 설정에 따라 아래와같이 테이블 형식으로 사용이 가능하다.

 

https://mine-it-record.tistory.com/284

 

[jqGrid] 기본 사용법 (ft. 기본 설정)

- jqGrid 기본 사용법 - jqGrid를 표시하는 정도의 기본 사용법에 대해 알아보자. 우선 사용하기에 앞서 jqGrid를 다운로드하고 .js와 .css를 잡아주어야한다. https://mine-it-record.tistory.com/283 [JavaScrip..

mine-it-record.tistory.com

 

반응형


댓글

TOP