본문 바로가기
728x90

web/JS3

Front 라이브러리 - 워드클라우드 jQCloud/차트Chart.js 오늘은 프론트에서 쓰이는 간단한 라이브러리를 소개하려고한다. jQCloud var words = [ {text: "Lorem", weight: 13}, {text: "Ipsum", weight: 10.5}, {text: "Dolor", weight: 9.4}, {text: "Sit", weight: 8}, {text: "Amet", weight: 6.2}, {text: "Consectetur", weight: 5}, {text: "Adipiscing", weight: 5}, /* ... */ ]; $('#demo').jQCloud(words); jQCloud No conf Default configuration, no special parameters for words. var words = [ {tex.. 2021. 7. 16.
Kendo DatePicker 시작일 종료일 제한하기 (두가지 방법) 1. 날짜는 모두 선택 가능, 검색 버튼에서 검사하는 방법 모든 날짜를 선택할 수 있는 대신 검색 버튼을 누르면 alert창이 뜨고 시작과 종료일을 같은 날짜로 set해준다. //시작일과 종료일 체크한 후 이상 없으면 true반환 chkDatePicker : function () { var stDe = $("#stDe").data("kendoDatePicker").value(); var edDe = $("#edDe").data("kendoDatePicker").value(); if(stDe > edDe){ console.log("no"); return false; } return true; }, //이상 있을 시 시작일과 종료일 같은 날짜로 셋팅 setStEdDatePicker : function (){.. 2021. 5. 14.
Front에 쓰이는 JavaScript 라이브러리 (jqGrid, Kendo UI Grid) js와 html을 사용해 그리드를 더 쉽고 편하게 만들어 주는 라이브러리이다. HTML5개발자가 많이 사용한다고 한다. 1. jqGrid jQuery Grid Plugin – jqGrid We are happy to inform you that the new release of Guriddo jqGrid JS version 5.5.4 is released. This is bug fix release, but add a full support of jQuery 3.5.X, has numerous important fixes and add a very useful additions. Below is the list of additions an www.trirand.com 플러그인 다운로드 사이트이다. jqG.. 2021. 5. 12.
728x90