jQuery 19

[jQuery] jqxGrid 차트의 높이와 단위를 자동으로

jqxGrid 차트의 높이와 단위를 자동으로 {type: 'column',valueAxis : {visible: true,maxValue:'auto', // Max값을 Auto로 지정unitInterval: 5000, // 차트의 단위를 5000으로 지정formatFunction:function(value){ // 차트의 단위를 평균으로 지정return Math.round(value);},title: { text: 'GDP & Debt per Capita($) ' }},series: [{ dataField: 'GDP', displayText: 'GDP per Capita' },{ dataField: 'Debt', displayText: 'Debt per Capita' }]}

Programming/jQuery 2016.08.30

[jQuery] alert 디자인을 바꿔주는 플러그인

alert 디자인을 바꿔주는 플러그인 ALERTIFY.js Alert Plug-In SetupURL : http://fabien-d.github.io/alertify.js/ 아래 폴더에 있는 라이브러리를 프로젝트에 저장lib 폴더 alertify.js, alertify.min.jsthemes 폴더 alertify.bootstrap.css, alertify.core.css, alertify.default.css Usage위에 추가한 경로에 있는 해당 라이브러리 참조Include JSInclude CSS Default Usage (기본 alert 메시지) 1. alertalertify.alert("Message"); 2. confirmalertify.confirm("Message", function (e) ..

Programming/jQuery 2015.07.10

[jQuery] jQuery Validate

jQuery Validate jQuery Validate (링크) jquery validate를 사용하기 위해서는 name값이 반드시 필요. HTML이름 닉네임 이메일 비밀번호 비밀번호 확인 Script$(document).ready(function() {$("#registerform").validate({rules: {nickName: {required: true},userName: {required: true,email: true,remote: {url: "/ajaxValidUser",type: "GET",data: {userName: function() {return $("#userName").val();}}}},userNameAgain: {required: true,email: true,equal..

Programming/jQuery 2015.06.18

[jQuery] form의 모든 input text null check

form의 모든 input text null check 회원가입처럼 form의 text field null check시 기존에는 존재하는 모든 필드를 id로 개별적으로 체크를 했었다. 하지만 필드 항목이 늘어나거나 바뀌는 경우에는 스크립트 부분도 같이 수정해야 하는 번거로움이 있어서 필드가 추가, 변경되더라도스크립트는 수정할 필요가 없으면 좋겠다는 생각을 했다. 해당 form의 input 중 모든 text type을 조회하여 null value가 있을 경우 alert과 focus를 주기위해 해당 id, label을 추출하고 true를 반환, null value가 존재하지 않으면 false를 반환하도록 만들어 보았다. txtFieldCheck()가 true가 아닌경우 submit() 기능을 넣어주면 된다...

Programming/jQuery 2015.04.22