전화번호 밸리데이션 { name : 'tel', // 전화번호 fieldLabel : "TEL", maxLength : 20, enforceMaxLength: true, // 입력란 길이 제한 regex: /^[0-9,-]{0,30}$/, regexText: ' 전화번호 는 숫자와 - 를 입력 할 수 있습니다.', validator: function(v) { return /^[0-9,-]{0,30}$/.test(v)?true:"NOTICE"; } } 사업자번호 밸리데이션 { name : 'bsno', // 사업자번호 fieldLabel : "BSNO", maxLength : 12, enforceMaxLength: true, // 입력란 길이 제한 readOnly : false, regex: /^[0-9]{3}[\- ]?[0-9]{2}[\- ]?[0-9]{5}$/, regexText: ' 사업자번호 는 숫자와 - 를 입력할 수 있습니다.', validator: function(v) { return /^[0-9]{3}[\- ]?[0-9]{2}[\- ]?[0-9]{5}$/.test(v)?true:"NOTICE"; }, listeners: { change:function(me,newVal,oldVal){ if(typeof(old...