/*-- ------------------------------------------------------ oxsolution JAVASCRIPT functions http://www.oxsolution.com ------------------------------------------------------ --*/ /* */ function oxc_calendar(vn) { this.vn = vn; this.cType = 1; //1:date, 2:datetime this.sType = 0; //1:year, 2:month, 3:hour, 4:minute is opened, 0:all closed this.elmId = ""; this.lang = (typeof langOX != "undefined")? (langOX.currentType || "ko") : "ko"; if (this.lang == "ko") { this.msg = { "calendar":"´Þ·Â", "months":["","01","02","03","04","05","06","07","08","09","10","11","12"], "days":["ÀÏ","¿ù","È­","¼ö","¸ñ","±Ý","Åä"], "am":"¿ÀÀü", "pm":"¿ÀÈÄ", "prev":"ÀÌÀü", "next":"´ÙÀ½", "ok":"È®ÀÎ", "close":"´Ý±â", "select":"³¯Â¥¸¦ ¼±ÅÃÇϼ¼¿ä.", "ymd":"Y-m-d (K)" }; }else{ this.msg = { "calendar":"Calendar", "months":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"], "days":["S","M","T","W","T","F","S"], "am":"AM", "pm":"PM", "prev":"Prev", "next":"Next", "ok":"Ok", "close":"Close", "select":"Please select a date.", "ymd":"D, M j, Y" }; } var o = this.getTodayInfo(); this.year = o[0]; this.month = o[1]; this.day = o[2]; this.hour = 0; this.min = 0; this.ox_jsCalendarTpl = null; var that = this; attachFunc(document.body,"mousedown",function() {that.hideCalendar()}); } oxc_calendar.prototype.getTodayInfo = function() { var o = new Date(); return [o.getFullYear(),o.getMonth()+1,o.getDate()]; } oxc_calendar.prototype.lastDay = function(y,m) { var o = this.checkYM(y,m); return getLastDay(o.y,o.m); } oxc_calendar.prototype.checkYM = function(y,m) { y = parseInt(y,10); m = parseInt(m,10); if (m < 1) { m = Math.abs(m); var i = Math.ceil(m / 12); if (!(m % 12)) i++; y -= i; m = 12 * i - m; }else if (m > 12) { var i = Math.floor(m / 12); if (!(m % 12)) i--; y += i; m = m - 12 * i; } return {"y":y,"m":m}; } oxc_calendar.prototype.checkYMD = function(y,m,d) { y = parseInt(y,10); m = parseInt(m,10); d = parseInt(d,10); var o; if (d < 1) { while (d < 1) { o = this.prevYM(y,m); y = o.y; m = o.m; d += this.lastDay(y,m); } }else{ o = this.checkYM(y,m); y = o.y; m = o.m; var last = this.lastDay(y,m); while (d > last) { o = this.nextYM(y,m); y = o.y; m = o.m; d -= last; last = this.lastDay(y,m); } } return {"y":y,"m":m,"d":d}; } oxc_calendar.prototype.prevYM = function(y,m) { return this.checkYM(y,--m); } oxc_calendar.prototype.nextYM = function(y,m) { return this.checkYM(y,++m); } oxc_calendar.prototype.mkdate = function(y,m,d) { var o = this.checkYMD(y,m,d); return [o.y,o.m,o.d]; } oxc_calendar.prototype.getStrDate = function(format,y,m,d,h,n,s) { if (!h) h = 0; if (!n) n = 0; if (!s) s = 0; var o = new Date(y,m-1,d,h,n,s); return format.replace(/[ADFHIJKLMNSY]/gi,function(s) { switch (s) { case "Y": return o.getFullYear(); case "y": return (""+o.getFullYear()).substr(2); case "F": return (["January","Febrary","March","April","May","June","July","August","September","October","Novermber","December"])[o.getMonth()]; case "M": return (["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"])[o.getMonth()]; case "m": return zerofill(o.getMonth()+1,2); case "n": return o.getMonth()+1; case "d": return zerofill(o.getDate(),2); case "j": return o.getDate(); case "l": return (["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"])[o.getDay()]; case "D": return (["Sun","Mon","Tue","Wed","Thu","Fri","Sat"])[o.getDay()]; case "K": return (["ÀÏ","¿ù","È­","¼ö","¸ñ","±Ý","Åä"])[o.getDay()]; case "H": return zerofill(o.getHours(),2); case "h": return o.getHours(); case "I": return zerofill(o.getMinutes(),2); case "i": return o.getMinutes(); case "S": return zerofill(o.getSeconds(),2); case "s": return o.getSeconds(); case "A": return (["AM","PM"])[(o.getHours() < 12)? 0 : 1]; case "a": return (["am","pm"])[(o.getHours() < 12)? 0 : 1]; default: return s; } }); } oxc_calendar.prototype.showCalendar = function(elmId,d,e) { if (d && /(\d{4})-(\d{2})-(\d{2})/.test(d)) { var o = this.checkYMD(RegExp.$1,RegExp.$2,RegExp.$3); this.year = o.y; this.month = o.m; this.day = o.d; } if (this.ox_jsCalendarTpl == null) { this.ox_jsCalendarTpl = document.createElement("div"); this.ox_jsCalendarTpl.id = this.vn+"_calendarTpl"; this.ox_jsCalendarTpl.className = "ox_calendar"; this.ox_jsCalendarTpl.style.display = "none"; this.ox_jsCalendarTpl.style.position = "absolute"; this.ox_jsCalendarTpl.style.zIndex = 9000; document.body.appendChild(this.ox_jsCalendarTpl); attachFunc(this.ox_jsCalendarTpl,"mousedown",stopBubbleEvent); } var htmlY = '', htmlM = ''; this.ox_jsCalendarTpl.innerHTML = '' +'
' +'' +'' +((this.lang == "ko")? htmlY+htmlM : htmlM+htmlY) +'' +'
' +'
'+this.getCalendarHtml()+'
' +'
' +'
'; if (typeof IS_MOBILE != "undefined" && IS_MOBILE) { openLayer(this.ox_jsCalendarTpl,"center"); setWindowMask(8999); }else{ openLayer(this.ox_jsCalendarTpl,(e || window.event || "center")); } this.elmId = elmId; this.cType = 1; } oxc_calendar.prototype.showCalendarTime = function(elmId,d,e) { this.showCalendar(elmId,d,e); this.resetTime(); this.cType = 2; } oxc_calendar.prototype.resetTime = function() { getById(this.vn+"_timeFrame").style.display = "block"; getById(this.vn+"_timeFrame").innerHTML = this.msg["select"]; } oxc_calendar.prototype.hideCalendar = function(onChoice) { if (this.ox_jsCalendarTpl) { closeLayer(this.ox_jsCalendarTpl); if (onChoice) { var elm = getById(this.elmId); if (elm) elm.focus(); } } } oxc_calendar.prototype.getCalendarHtml = function() { var y = this.year, m = this.month; var py = y, pm = m - 1, ny = y, nm = m + 1; if (pm < 1) {pm = 12; py--;} if (nm > 12) {nm = 1; ny++;} var days = this.lastDay(y,m), pDays = this.lastDay(py,pm); var firstDay = new Date(y,m-1,1).getDay(), lastDay = new Date(y,m-1,days).getDay(); var beginDay = (6 - firstDay == 6)? 1 : 1 - firstDay, finishDay = (6 - lastDay == 0)? days : days + (6 - lastDay); var o = this.getTodayInfo(); var i = beginDay, j = 0, d, css, func, idStr; var c = ["sun","mon","tue","wed","thu","fri","sat"]; var html = '' +'' +'' +'' +'' +'' +'' +''; while (i <= finishDay) { if (j == 0) html += ""; if (i < 1 || i > days) { d = (i < 1)? i + pDays : i - days; css = "side"; func = "onChangeDate"; idStr = ""; }else{ d = i; css = c[j]; if (y == o[0] && m == o[1] && d == o[2]) css += " today"; func = "getDate"; idStr = 'id="'+this.vn+'_date_'+y+'_'+m+'_'+d+'"'; } html += ''; i++; if (j == 6) {html += ""; j = 0;} else j++; } html += "
'+this.msg["calendar"]+'
'+this.msg["days"][0]+''+this.msg["days"][1]+''+this.msg["days"][2]+''+this.msg["days"][3]+''+this.msg["days"][4]+''+this.msg["days"][5]+''+this.msg["days"][6]+'
"; return html; } oxc_calendar.prototype.showYear = function() { if (this.sType == 1) { this.hideList(); return; } var o = this.getTodayInfo(), now = 0, html = ''; elm.style.display = "block"; getById(this.vn+"_dateFrame").style.display = "none"; getById(this.vn+"_dateBtn"+now).focus(); this.sType = 1; this.onList(); } oxc_calendar.prototype.showMonth = function() { if (this.sType == 2) { this.hideList(); return; } var now = 0, html = ''; elm.style.display = "block"; getById(this.vn+"_dateFrame").style.display = "none"; getById(this.vn+"_dateBtn"+now).focus(); this.sType = 2; this.onList(); } oxc_calendar.prototype.showHour = function() { if (this.sType == 3) { this.hideList(); return; } var now = 0, html = '
'; elm.style.display = "block"; if (now < 12) { addClass(removeClass(elm,"pm"),"am"); }else{ addClass(removeClass(elm,"am"),"pm"); } getById(this.vn+"_dateFrame").style.display = "none"; getById(this.vn+"_dateBtn"+now).focus(); this.sType = 3; this.onList(); } oxc_calendar.prototype.showMinute = function() { if (this.sType == 4) { this.hideList(); return; } var now = 0, html = ''; elm.style.display = "block"; getById(this.vn+"_dateFrame").style.display = "none"; getById(this.vn+"_dateBtn"+now).focus(); this.sType = 4; this.onList(); } oxc_calendar.prototype.hideList = function() { getById(this.vn+"_dateFrame").style.display = "block"; getById(this.vn+"_listFrame").style.display = "none"; this.sType = 0; this.onList(); } oxc_calendar.prototype.onList = function() { var f = [null,removeClass,removeClass,removeClass,removeClass], btn; f[this.sType] = addClass; if (btn = getById(this.vn+"_yearElm")) f[1](btn,"on"); if (btn = getById(this.vn+"_monthElm")) f[2](btn,"on"); if (btn = getById(this.vn+"_hourElm")) f[3](btn,"on"); if (btn = getById(this.vn+"_minElm")) f[4](btn,"on"); } oxc_calendar.prototype.onChangeYear = function(y) { this.year = y; this.hideList(); this.changeYM(); getById(this.vn+"_yearElm").focus(); } oxc_calendar.prototype.onChangeMonth = function(m) { this.month = m; this.hideList(); this.changeYM(); getById(this.vn+"_monthElm").focus(); } oxc_calendar.prototype.onChangeHour = function(h) { this.hour = h; this.hideList(); this.changeHM(); getById(this.vn+"_hourElm").focus(); } oxc_calendar.prototype.onChangeMinute = function(n) { this.min = n; this.hideList(); this.changeHM(); getById(this.vn+"_minElm").focus(); } oxc_calendar.prototype.onChangeDate = function(y,m,d) { this.hideList(); var o = this.checkYMD(y,m,d); this.year = o.y; this.month = o.m; this.changeYM(); if (m >= 1 && m <= 12) { var days = this.lastDay(y,m); if (d < 1 || d > days) { getById(this.vn+"_date_"+o.y+"_"+o.m+"_"+o.d).focus(); } } } oxc_calendar.prototype.changeYM = function() { getById(this.vn+"_yearElm").innerHTML = this.year; getById(this.vn+"_monthElm").innerHTML = this.msg["months"][this.month]; getById(this.vn+"_dateFrame").innerHTML = this.getCalendarHtml(); if (this.cType == 2) this.resetTime(); } oxc_calendar.prototype.changeHM = function() { getById(this.vn+"_hourElm").innerHTML = zerofill(this.hour,2); getById(this.vn+"_minElm").innerHTML = zerofill(this.min,2); } oxc_calendar.prototype.getDate = function(y,m,d) { var btn = getById(this.vn+"_date_"+this.year+"_"+this.month+"_"+this.day); if (btn) removeClass(btn,"on"); this.year = y; this.month = m; this.day = d; if (this.cType == 1) { var elm = getById(this.elmId); if (elm) elm.value = this.getStrDate("Y-m-d",y,m,d); this.hideCalendar(true); if (typeof this.userFunc == "function") this.userFunc(this.year,this.month,this.day); }else{ var o = new Date(); var h = o.getHours(); var n = Math.round(o.getMinutes() / 10) * 10; if (n == 60) { n = 0; h++; if (h > 23) h = 0; } this.hour = h; this.min = n; getById(this.vn+"_timeFrame").innerHTML = '
'+this.getStrDate(this.msg["ymd"],y,m,d)+'
' +':' +'' +''; btn = getById(this.vn+"_date_"+y+"_"+m+"_"+d); if (btn) addClass(btn,"on"); } } oxc_calendar.prototype.getTime = function() { var elm = getById(this.elmId); if (elm) elm.value = this.getStrDate("Y-m-d H:I:S",this.year,this.month,this.day,this.hour,this.min,0); this.hideCalendar(true); if (typeof this.userFunc == "function") this.userFunc(this.year,this.month,this.day,this.hour,this.min,0); } oxc_calendar.prototype.isDate = function(elm) { if (!date_confirm(elm)) elm.value = ""; } function setToday(elmId) { var o = new Date(); ((typeof elmId == "string")? getById(elmId) : elmId).value = o.getFullYear()+"-"+zerofill(o.getMonth()+1,2)+"-"+zerofill(o.getDate(),2); } function setTodayTime(elmId) { var o = new Date(); ((typeof elmId == "string")? getById(elmId) : elmId).value = o.getFullYear()+"-"+zerofill(o.getMonth()+1,2)+"-"+zerofill(o.getDate(),2)+" "+zerofill(o.getHours(),2)+":"+zerofill(o.getMinutes(),2)+":"+zerofill(o.getSeconds(),2); }