/*! Copyright (c) 2012 zvingsoftware (http://www.zving.com) * Thanks to: jQuery,Ext.JS,Tangram Url.js Page.js Node.js Misc.js Resize.js Drag.js DragManager.js Cookie.js Storage.js Statable.js Form.js */ (function(){var b=window.Zving,a=Object.prototype.toString;b.Constant={};b.toArray=function(h,j,c){if(!h||!h.length){return[]}if(typeof h.length=="number"){var f=[];var e=0,d=h.length;for(;e0){return setTimeout(c,b)}c();return 0};Zving.Function.methodize=function(b,a){if(a){return function(){return b.apply(null,[this[a]].concat(Array.prototype.slice.call(arguments)))}}return function(){return b.apply(null,[this].concat(Array.prototype.slice.call(arguments)))}};Zving.Function.rwrap=function(b,c,a){a|=0;return function(){var d=b.apply(this,arguments);if(a>=0){d=arguments[a]}return c?new c(d):d}};Zving.Function.createTargeted=function(c,a,b){return function(){if(a.target===arguments[0]){c.apply(b,Array.prototype.slice.call(arguments))}}};Zving.Function.createBuffered=function(c,a,d,b){d.task=new Zving.Util.DelayedTask();return function(){d.task.delay(Zving.isObject(a)?a.buffer:a,c,b,Array.prototype.slice.call(arguments))}};Zving.Function.createSingle=function(e,d,a,c,b){return function(f){Zving.EventManager.removeListener(d,a,c,b);return e.apply(b||d,arguments)}};Zving.Function.createDelayed=function(c,a,d,b){return function(){var e=new Zving.Util.DelayedTask(),f=Array.prototype.slice.call(arguments);if(!d.tasks){d.tasks=[]}d.tasks.push(e);e.delay(Zving.isObject(a)?a.buffer:a||10,function(){d.tasks.remove(e);c.apply(b,f)},b)}};Zving.Function.createThrottled=function(e,b,d){var f,a,c,j,h=function(){e.apply(d||this,c);f=new Date().getTime()};return function(){a=new Date().getTime()-f;c=arguments;clearTimeout(j);if(!f||(a>=b)){h()}else{j=setTimeout(h,b-a)}}};Zving.Function.createInterceptor=function(c,b,a){var d=c;if(!z.isFunction(b)){return c}else{return function(){var f=this,e=arguments;b.target=f;b.method=c;return(b.apply(a||f||window,e)!==false)?c.apply(f||window,e):null}}};Zving.Function.createSequence=function(c,b,a){if(!z.isFunction(b)){return c}else{return function(){var d=c.apply(this||window,arguments);b.apply(a||this||window,arguments);return d}}};(function(){var c=window.Zving,b={};var d=function(f){for(var e in f){if(!f.hasOwnProperty(e)){continue}this[e]=f[e]}};var a=Object.prototype.constructor;b.extend=function(e,l,j){if(typeof l==="object"){j=l;l=e;e=j.constructor!=a?j.constructor:function(){l.apply(this,arguments)}}var h=function(){},f,k=l.prototype;h.prototype=k;f=e.prototype=new h();f.constructor=e;e.superclass=k;if(k.constructor==a){k.constructor=l}e.override=function(m){b.override(e,m)};f.override=d;b.override(e,j);e.extend=function(m){return b.extend(e,m)};return e};b.override=function(e,h){if(h){var f=e.prototype;c.extra(f,h);if(c.isIE&&h.hasOwnProperty("toString")){f.toString=h.toString}}};c.Class=b})();(function(){var c=window.Zving,a=Zving.Function,b={};b.methodize=function(h,d){var e={},f;for(f in h){if(h.hasOwnProperty(f)&&typeof h[f]==="function"&&!/^_/.test(f)){e[f]=a.methodize(h[f],d)}}return e};b.extend=function(d,e){c.Class.override(d,b.methodize(e))};b.rwrap=function(k,l,j){var f={};if(undefined===j||null===j){j=[]}var h=0,d=j.length;for(;h=0&&c===d.length-b.length};a.leftPad=function(f,h,e){if(!isNaN(e)){var b="",d;for(d=f.length;d/g,">").replace(/ /g," ")};a.htmlDecode=function(b){return b.replace(/\"/g,'"').replace(/\</g,"<").replace(/\>/g,">").replace(/\ /g," ").replace(/\&/g,"&")};a.javaEncode=function(b){if(!b){return b}return b.replace("\\","\\\\").replace("\r\n","\n").replace("\n","\\n").replace('"','\\"').replace("'","\\'")};a.javaDecode=function(b){if(!b){return b}return b.replace("\\\\","\\").replace("\\n","\n").replace("\\r","\r").replace('\\"','"').replace("\\'","'")};a.escapeReg=function(b){return b.replace(new RegExp("([.*+?^=!:\x24{}()|[\\]/\\\\])","g"),"\\$1")};a.isNumber=function(b){if(a.trim(b)==""){return false}return(/^\-?\d+(\.\d+)?$/).test(""+b)};a.isInt=function(b){if(a.trim(b)==""){return false}return(/^\-?\d+$/).test(""+b)};a.toInt=function(b){return parseInt(b,10)};a.isTime=function(d){if(a.trim(d)==""){return false}var b=d.split(":");if(b.length!==3){return false}if(!a.isNumber(b[0])||!a.isNumber(b[1])||!a.isNumber(b[2])){return false}var c=new Date();c.setHours(b[0]);c.setMinutes(b[1]);c.setSeconds(b[2]);return c.toString().indexOf("Invalid")<0};a.isDate=function(d){if(a.trim(d)==""){return false}var b=d.split("-");if(b.length!==3){return false}if(!a.isNumber(b[0])||!a.isNumber(b[1])||!a.isNumber(b[2])){return false}var c=new Date();c.setFullYear(b[0]);c.setMonth(b[1]);c.setDate(b[2]);return c.toString().indexOf("Invalid")<0};a.isDateTime=function(c){if(a.trim(c)==""){return false}if(c.indexOf(" ")<0){return isDate(c)}var b=c.split(" ");if(b.length<2){return false}return a.isDate(b[0])&&a.isTime(b[1])};Zving.Helper.extend(String,a);Zving.String=a})();(function(){var a={};a.forEach=a.each=function(c,h,f){var e=0,b=c.length;for(;eb.length){b.push(f)}else{var c=b.slice(d),e;b[d]=f;for(e=0;e1)?"0"+e[b]:e[b]})}return c};Zving.Helper.extend(Date,a);Zving.Date=a})();(function(){var b=window.Zving;var a={};a.getCurrentDate=function(){return a.toString(new Date())};a.getCurrentTime=function(){var e=new Date();var j=e.getHours();var d=e.getMinutes();var f=e.getSeconds();var c=[];c.push(j>9?j:"0"+j);c.push(d>9?d:"0"+d);c.push(f>9?f:"0"+f);return c.join(":")};a.toString=function(f){var j=f.getFullYear();var e=f.getMonth()+1;var h=f.getDate();var c=[];c.push(j);c.push(e>9?e:"0"+e);c.push(h>9?h:"0"+h);return c.join("-")};a.parseDate=function(l){if(!l){b.Console.error("dateTime.js # DateTime.parseDate : 没有传入参数!")}var o=/^(\d{4})-(\d{1,2})-(\d{1,2})(\s(\d{1,2}):(\d{1,2})(:(\d{1,2}))?)?$/;if(!o.test(l)){b.Console.error("dateTime.js # DateTime.parseDate : 参数错误 "+l);return new Date()}o.exec(l);var n=RegExp.$1;var j=RegExp.$2;var k=RegExp.$3;var f=RegExp.$5;var e=RegExp.$6;var p=RegExp.$8;var c=new Date(n,j-1,k);if(!f){f=0;e=0}c.setHours(f);c.setMinutes(e);if(!p){p=0}c.setSeconds(p);return c};b.DateTime=a})();(function(){var c=window.Zving,b={};b.evalJs=function(d,e){return new Function("opts",d)(e)};b.evalExp=function(d,e){return new Function("opts","return "+d+";")(e)};b.globalEval=function(d){if(window.execScript){window.execScript(d)}else{window["eval"].call(window,d)}};b.runFuncBind$elem=function(k,d){var h=/([\w\.]+)(\((.*)\);?)?$/.exec(d);if(h[1]){var j=namespace(h[1]);var e=[];if(h[3]){var f=b.getReferId(k);h[3].replace(/\bthis\b/g,f);e=window["eval"]("["+h[3]+"]")}if(typeof j=="function"){j.apply(k,e)}else{Console.error("请确认用于插入内容模块的方法 "+d+" 存在并且没有语法错误。")}}};b.rectContains=function(e,d){return e.left<=d.left&&e.right>=d.right&&e.top<=d.top&&e.bottom>=d.bottom};b.rectIntersect=function(h,f){var j=Math.max(h.top,f.top),k=Math.min(h.right,f.right),d=Math.min(h.bottom,f.bottom),e=Math.max(h.left,f.left);if(d>=j&&k>=e){return{top:j,right:k,bottom:d,left:e}}else{return null}};var a=0;b.getReferId=function(d){if(typeof d=="object"||typeof d=="function"){var e="_z_"+(++a);window[e]=d;return e}};b.random=function(e,d){return Math.floor(Math.random()*(d-e+1)+e)};b.DelayedTask=function(h,f,d){var j=this,k,e=function(){clearInterval(k);k=null;h.apply(f,d||[])};j.delay=function(m,o,n,l){j.cancel();h=o||h;f=n||f;d=l||d;k=setInterval(e,m)};j.cancel=function(){if(k){clearInterval(k);k=null}}};c.Util=b})();(function(){var z=window.Zving,DataTable,DataRow,DataCollection,_ZVING_NULL,javaEncode=z.String.javaEncode;z.Constant.Null=_ZVING_NULL="_ZVING_NULL";DataTable=function(options){this.Columns=null;this.Values=null;this.Rows=null;this.ColMap={};if(options&&options.Columns&&options.Values){this.init(options.Columns,options.Values)}};DataTable.prototype.getRowCount=function(){return this.Rows.length};DataTable.prototype.getColCount=function(){return this.Columns.length};DataTable.prototype.getColName=function(i){return this.Columns[i]};DataTable.prototype.get2=function(i,j){return this.Rows[i].get2(j)};DataTable.prototype.get=function(i,str){return this.Rows[i].get(str)};DataTable.prototype.getDataRow=function(i){return this.Rows[i]};DataTable.prototype.deleteRow=function(i){this.Values.splice(i,1);this.Rows.splice(i,1);for(var k=i;k");arr.push("");return arr.join("")};DataTable.prototype.toJSON=function(){var obj=z.extra({},{"@type":"DataTable",Columns:this.Columns,Values:this.Values});return obj};DataRow=function(dt,index){this.DT=dt;this.Index=index};DataRow.prototype.get2=function(i){return this.DT.Values[this.Index][i]};DataRow.prototype.getColCount=function(){return this.DT.Columns.length};DataRow.prototype.getColName=function(i){return this.DT.Columns[i]};DataRow.prototype.get=function(str){str=str;var c=this.DT.ColMap[str];if(typeof(c)=="undefined"){if(/[A-Z]/.test(str)){return this.get(str.toLowerCase())}else{return null}}return this.DT.Values[this.Index][c]};DataRow.prototype.set=function(str,value){str=str.toLowerCase();var c=this.DT.ColMap[str];if(typeof(c)=="undefined"){return}this.DT.Values[this.Index][c]=value};DataRow.prototype.set2=function(i,value){this.DT.Values[this.Index][i]=value};DataCollection=function(){this.map={};this.valuetype={};this.keys=[]};DataCollection.prototype.get=function(ID){if(typeof(ID)==="number"){return this.map[this.keys[ID]]}return this.map[ID]};DataCollection.prototype.getAt=function(ID){ID=Number(ID);if(isNaN(ID)||ID>this.keys.length){return}return this.map[this.keys[ID]]};DataCollection.prototype.getKey=function(index){return this.keys[index]};DataCollection.prototype.getValues=function(index){var ret=[];for(var i=0;ithis.keys.length){return}obj=this.map[this.keys[ID]];delete this.map[this.keys[ID]];delete this.valuetype[this.keys[ID]];this.keys.splice(ID,1);return obj};DataCollection.prototype.clear=function(ID){this.keys.length=0;this.map={};this.valuetype={};return this};DataCollection.prototype.toQueryString=function(){var arr=[],i;for(i=0;i');arr.push("");for(i=0;i')}else{arr.push('');if(thisType=="DataTable"){arr.push(v.toXML())}else{if(thisType=="String"){if(v===null||typeof(v)=="undefined"){arr.push("")}else{arr.push("")}}else{if(thisType=="Map"){if(v===null||typeof(v)=="undefined"){arr.push("")}else{arr.push("")}}else{if(thisType=="StringArray"){if(v===null||typeof(v)=="undefined"){arr.push("")}else{var r=[];for(var j=0;j")}}else{arr.push(v)}}}}arr.push("")}}catch(ex){z.Console.error("DataCollection.toXML():"+ID+","+ex.message)}}arr.push("");return arr.join("")};DataCollection.prototype.toJSON=function(){return this.map};DataCollection.prototype.add=DataCollection.prototype.set=function(ID,Value,Type){if(typeof this.map[ID]=="undefined"){this.keys.push(ID)}this.map[ID]=Value;if(Type){this.valuetype[ID]=Type}else{if(Value&&Value.getDataRow){this.valuetype[ID]="DataTable"}else{this.valuetype[ID]="String"}}};DataCollection.prototype.addAll=function(dc){if(!dc){return}if(!dc.valuetype){z.Console.error("DataCollection.addAll()要求参数必须是一个DataCollection!");return}var size=dc.size(),i;for(i=0;i0){h.firing=true;for(;e0};c.suspendEvents=function(e){c.eventsSuspended=true;if(e&&!c.eventQueue){c.eventQueue=[]}};c.resumeEvents=function(){var e=e,h=e.eventQueue||[];e.eventsSuspended=false;delete e.eventQueue;h.each(function(j){e.fireEvent.apply(e,j)})};c.enableBubble=function(l){if(!b.isEmpty(l)){l=b.isArray(l)?l:Array.prototype.slice.call(arguments);for(var k=0,e=l.length;k999){return null}}return null});var a=HTMLElement.prototype;a.__defineSetter__("outerHTML",function(h){var f=this.ownerDocument.createRange();f.setStartBefore(this);var j=f.createContextualFragment(h);this.parentNode.replaceChild(j,this);return h});a.__defineGetter__("outerHTML",function(){var f,j,h=this.attributes,k="<"+this.tagName.toLowerCase();for(j=0;j"}return k+">"+this.innerHTML+""});a.__defineSetter__("innerText",function(f){this.textContent=f});a.__defineGetter__("innerText",function(){return this.textContent});a.__defineSetter__("outerText",function(f){this.parentNode.replaceChild(document.createTextNode(s),this);return s});a.__defineGetter__("outerText",function(){var f=this.ownerDocument.createRange();f.selectNodeContents(this);return f.toString()});a.__defineGetter__("currentStyle",function(){return this.ownerDocument.defaultView.getComputedStyle(this,null)});a.__defineGetter__("parentElement",function(){return(this.parentNode===this.ownerDocument)?null:this.parentNode});a.__defineGetter__("children",function(){var h=[],f;for(f=0;f"}}}return h};a.removeNode=d.isIE&&!d.isIE8?(function(){Zving._RycDiv=null;return function(f){f=c(f);if(!f||!f.nodeName){return}var e=f.ownerDocument.parentWindow.Zving;if(f&&f.tagName!="BODY"){if(e.EventManager){e.EventManager.removeAll(f);e.detachNodeMethod(f)}e._RycDiv=e._RycDiv||f.ownerDocument.createElement("div");e._RycDiv.appendChild(f);e._RycDiv.innerHTML="";delete e.elCache[d.id(f)]}setTimeout(CollectGarbage,1)}}()):(function(f){f=c(f);if(!f||!f.nodeName){return}var e=f.ownerDocument.parentWindow.Zving;if(f&&f.parentNode&&f.tagName!="BODY"){if(e.EventManager){e.EventManager.removeAll(f);e.detachNodeMethod(f)}f.parentNode.removeChild(f);delete e.elCache[d.id(f)]}});a.createNodeByHtml=function(n,o){var e=/^(<[\w\W]+>)$/m;var f=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;var l=/<|&#?\w+;/;var h;var k=e.exec(n);o=o||document;if(k&&k[1]){var m=f.exec(n);if(m){h=o.createElement(m[1])}else{var j=o.createElement("div");j.innerHTML=n;h=j.firstChild}}else{if(!l.test(n)){h=o.createTextNode(n)}else{alert(["createNodeByHtml方法参数错误",n])}}if(h&&h.nodeType){h.appendTo=function(p){p.appendChild(this);this.appendTo=null;return this};return h}else{alert(["createNodeByHtml方法参数错误",n,h])}};a.addToCache=function(e,f){if(!e){return}f=f||d.id(e);if(f&&!d.elCache[f]){d.elCache[f]={el:e,data:{},events:{}}}};a.computePosition=function(A,f,y,e,v,m,x,k){var F=k?k.document:document;var j=d.isQuirks?F.body.clientWidth:F.documentElement.clientWidth;var n=d.isQuirks?F.body.clientHeight:F.documentElement.clientHeight;var q=Math.max(F.documentElement.scrollLeft,F.body.scrollLeft);var E=Math.max(F.documentElement.scrollTop,F.body.scrollTop);var C,B;v=v||"";var u=v.indexOf("l")!==-1;var o=v.indexOf("t")!==-1;var p=v.indexOf("r")!==-1;var D=v.indexOf("b")!==-1;if(e-E+x-n<0){if(A-q+m-j<0){return{x:u?y-m:A,y:o?f-x:e}}else{return{x:p?A:y-m,y:o?f-x:e}}}if(A-q+m-j<0){return{x:u?y-m:A,y:D?e:f-x}}else{return{x:p?A:y-m,y:D?e:f-x}}};a.computePositionEx=function(e,k){var j;if(e.ownerDocument!=k.ownerDocument){j=d.Node.getOffsetEx(e)}else{j=d.Node.getOffset(e)}var h=d.Node.getSize(e);var f=d.Node.getSize(k);return a.computePosition(j.x,j.y,j.x+h.width,j.y+h.height,null,f.width,f.height,d.rootWin)};a.getFrameOffset=a.getFrameXY=function(f){var h={x:0,y:0},e;f=f||window;if(f.tagName){if(f.tagName==="IFRAME"){f=f.contentWindow}else{f=f.ownerDocument.defaultView||f.ownerDocument.parentWindow}}while(f!=f.parent&&f!=Zving.rootWin){if(f.frameElement){e=Zving.Node.getOffset(f.frameElement);h.x+=e.x;h.y+=e.y}sw=Math.max(f.document.body.scrollLeft,f.document.documentElement.scrollLeft);sh=Math.max(f.document.body.scrollTop,f.document.documentElement.scrollTop);h.x-=sw;h.y-=sh;f=f.parent}f=null;return{x:h.x,y:h.y,left:h.x,top:h.y}};a.getViewport=function(h){var k,j;if(h){if(d.isDocument(h)){k=h;j=k.parentWindow}else{if(d.isWindow(h)){k=h.document;j=h}}}k=k||document;j=j||window;var e,f;if(d.isIE){e=k.compatMode=="BackCompat"?k.body.clientWidth:k.documentElement.clientWidth;f=k.compatMode=="BackCompat"?k.body.clientHeight:k.documentElement.clientHeight}else{e=j.innerWidth;f=j.innerHeight}return{width:e,height:f}};a.disable=function(h){h=c(h);if(h.tagName.toLowerCase()==="form"){var j=h.elements;for(var f=0;f500){clearInterval(h)}},40)};d.Dom=a})();(function(){var b=window.Zving,a={};b.getEvent=a.getEvent=function(c,f){c=c||(f||window).event;if(!c){var e=arguments.callee.caller,d=0;for(;e!=null;d++,e=e.caller){c=e.arguments[0];if(c&&typeof c=="object"&&(/Event/.test(c)||typeof c.type=="string")){return c}if(d>999){return null}}}return c};b.fixEvent=a.fixEvent=function(d,j){var h=j?j.document:document;if(!d){return null}var c=Math.max(h.documentElement.scrollLeft,h.body.scrollLeft);var e=Math.max(h.documentElement.scrollTop,h.body.scrollTop);if(typeof d.pageX==="undefined"){d.pageX=d.clientX+c-h.body.clientLeft}if(typeof d.pageY==="undefined"){d.pageY=d.clientY+e-h.body.clientTop}if(typeof d.preventDefault==="undefined"){d.preventDefault=function(){d.returnValue=false}}if(typeof d.stopPropagation==="undefined"){d.stopPropagation=function(){d.cancelBubble=true}}if(typeof d.srcElement==="undefined"){var f=d.target;while(f&&f.nodeType!=1){f=f.parentNode}d.srcElement=f}if(d.type=="DOMMouseScroll"&&typeof d.detail!="undefined"&&typeof d.wheelDelta=="undefined"){d.wheelDelta=-d.detail*40}return d};b.stopEvent=a.stopEvent=function(c){c=b.getEvent(c);if(!c){return}if(c.preventDefault){c.preventDefault();c.stopPropagation()}c.cancelBubble=true;c.returnValue=false};b.cancelEvent=a.cancelEvent=function(c){c=b.getEvent(c);if(!c){return}if(c.stopPropagation){c.stopPropagation()}else{c.cancelBubble=true}};b.preventEvent=a.preventEvent=function(c){c=b.getEvent(c);if(!c){return}if(c.preventDefault){c.preventDefault()}else{c.returnValue=false;try{if(c.ctrlKey||c.keyCode>111&&c.keyCode<124){c.keyCode=-1}}catch(d){}}};a.keys={enter:13,up:38,down:40,left:37,right:39,esc:27,space:32,backspace:8,tab:9,"delete":46};a.lockScroll=function(c){c=c||window;if(b.isFirefox){c.addEventListener("DOMMouseScroll",c.Zving.stopEvent,true)}else{c.document.body.attachEvent("onmousewheel",c.Zving.stopEvent)}if(c!=c.parent&&c!=Zving.rootWin){c=c.parent;a.lockScroll(c)}};a.unlockScroll=function(c){c=c||window;if(b.isFirefox){c.removeEventListener("DOMMouseScroll",c.Zving.stopEvent,true)}else{c.document.body.detachEvent("onmousewheel",c.Zving.stopEvent);c.document.body.detachEvent("onmousewheel",c.Zving.stopEvent)}if(c!=c.parent&&c!=Zving.rootWin){c=c.parent;a.unlockScroll(c)}};a.getEventPosition=a.getEventXY=function(c){var f,e;c=b.getEvent(c);var h={x:c.clientX,y:c.clientY};f=c.srcElement.ownerDocument;e=f.defaultView||f.parentWindow;var d=b.Dom.getFrameXY(e);h.x+=d.x;h.y+=d.y;return h};a.getEventPositionLocal=a.getEventPageXY=function(c){c=b.getEvent(c);var e={x:c.clientX,y:c.clientY};var d;if(b.isGecko){d=c.srcElement.ownerDocument.defaultView}else{d=c.srcElement.ownerDocument.parentWindow}e.x+=Math.max(d.document.body.scrollLeft,d.document.documentElement.scrollLeft);e.y+=Math.max(d.document.body.scrollTop,d.document.documentElement.scrollTop);return e};b.Event=a})();(function(){var n=window.Zving,p=n.elCache,h={},o={};var d=[];function c(w){var A=false,v=0,t=d.length,x=false,y;if(w){var u;if((w.URL&&w.readyState)||(w.location&&w.navigator)){u=(w.parentWindow||w).Zving;for(;v7);function a(l){l=l||location.href;return"#"+l.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(l){return l?this.bind(c,l):this.trigger(c)};$.fn[c].delay=50;h[c]=$.extend(h[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var l={},r,o=a(),m=function(t){return t},n=m,q=m;l.start=function(){r||p()};l.stop=function(){r&&clearTimeout(r);r=b};function p(){var u=a(),t=q(o);if(u!==o){n(o=u,t);$(e).trigger(c)}else{if(t!==o){location.href=location.href.replace(/#.*/,"")+t}}r=setTimeout(p,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var t,u;l.start=function(){if(!t){u=$.fn[c].src;u=u&&u+a();t=$('';var h=d.getDom("frame_fontdetect");var p=h.contentWindow.document;if(d.isIE){p.open();p.write("");p.close()}var k=p.body;var o=p.createElement("DIV");var u=p.createElement("SPAN");var t="font-size: 60px; margin: 0; padding: 0; border: 0; white-space: nowrap; line-height: 1; font-style: normal; font-weight: normal; text-decoration: none;";o.appendChild(u);o.style.cssText=t;u.style.cssText=t;u.innerHTML="The quick brown fox jumps over the lazy dog";k.appendChild(o);var r=u.offsetWidth;var e=u.offsetHeight;var l;if(o.currentStyle){l=o.currentStyle.fontFamily}else{l=p.defaultView.getComputedStyle(o,null).fontFamily}u.style.fontFamily=f;var j=u.offsetWidth;var m=u.offsetHeight;var q;p=o=u=null;h=null;n.innerHTML="";f=f.toLowerCase();if(f==l.toLowerCase()||/^(arial|verdana|sans-serif|serif)$/.test(f)){q=true}else{if(d.isWindows&&/^(tahoma|simsun|宋体|simhei|黑体)$/.test(f)){q=true}else{if(d.isMac&&/^(helvetica|stsong|华文宋体|stheiti|华文黑体)$/.test(f)){q=true}else{q=(j!=r||m!=e)}}}f=f.toLowerCase();c.hasFontList[f.toLowerCase()]=q;return q};if(window!=d.rootWin){c.hasFontList=d.rootWin.Zving.Misc.hasFontList;c.hasFont=d.rootWin.Zving.Misc.hasFont}d.Misc=c})();(function(){var c=window.Zving,b=c.isIE;var a=function(e,d){this.init(e,d)};a.prototype={init:function(n,k){this._obj=typeof(n)==="string"?document.getElementById(n):n;this._styleWidth=this._styleHeight=this._styleLeft=this._styleTop=0;this._sideRight=this._sideDown=this._sideLeft=this._sideUp=0;this._fixLeft=this._fixTop=0;this._scaleLeft=this._scaleTop=0;this._mxSet=function(){};this._mxRightWidth=this._mxDownHeight=this._mxUpHeight=this._mxLeftWidth=0;this._mxScaleWidth=this._mxScaleHeight=0;this._fun=function(){};var e=this._obj.currentStyle;this._borderX=(parseInt(e.borderLeftWidth,10)||0)+(parseInt(e.borderRightWidth,10)||0);this._borderY=(parseInt(e.borderTopWidth,10)||0)+(parseInt(e.borderBottomWidth,10)||0);var h=this;this._fR=function(f){h.Resize(f)};this._fS=function(){h.Stop()};this.SetOptions(k);this.Max=!!this.options.Max;this._mxContainer=(typeof(n)==="string"?document.getElementById(this.options.mxContainer):this.options.mxContainer)||null;this.mxLeft=Math.round(this.options.mxLeft);this.mxRight=Math.round(this.options.mxRight);this.mxTop=Math.round(this.options.mxTop);this.mxBottom=Math.round(this.options.mxBottom);this.Min=!!this.options.Min;this.minWidth=Math.round(this.options.minWidth);this.minHeight=Math.round(this.options.minHeight);this.Scale=!!this.options.Scale;this.Ratio=Math.max(this.options.Ratio,0);this._wrap=this.options.wrap?(typeof(this.options.wrap)==="string"?document.getElementById(this.options.wrap):this.options.wrap):this._obj;this.onResize=this.options.onResize;this.endResize=this.options.endResize;this.proxy=this.options.proxy;if(this.options.proxy){this._proxy=document.createElement("div");this._proxy.style.cssText=this._wrap.style.cssText;this._proxy.className="rProxy";this._proxy.style.height=this._wrap.clientHeight+"px";this._proxy.style.width=this._wrap.clientWidth+"px";this._proxy.style.display="none";this._wrap.parentNode.appendChild(this._proxy)}else{this._proxy=this._wrap}if(this.options.attachObj){this.attachObj=[];for(var l=0,d=this.options.attachObj.length;l ').replace(/@/gm,this.idPrefix);this._wrap.appendChild(m);if(!this.isStatic){this.Set(this.idPrefix+"rHandleLeftDown","left-down");this.Set(this.idPrefix+"rHandleRightUp","right-up");this.Set(this.idPrefix+"rHandleLeftUp","left-up");this.Set(this.idPrefix+"rHandleLeft","left");this.Set(this.idPrefix+"rHandleUp","up")}this.Set(this.idPrefix+"rHandleRight","right");this.Set(this.idPrefix+"rHandleRightDown","right-down");this.Set(this.idPrefix+"rHandleDown","down")},SetOptions:function(d){this.options={Max:false,mxContainer:"",mxLeft:0,mxRight:9999,mxTop:0,mxBottom:9999,Min:true,minWidth:50,minHeight:30,Scale:false,Ratio:0,onResize:null,attachObj:[],proxy:false,wrap:null,isStatic:false};if(d){for(var e in d){this.options[e]=d[e]}}},Set:function(h,f){var d;h=document.getElementById(h);if(!h){return}switch(f.toLowerCase()){case"up":d=this.Up;break;case"down":d=this.Down;break;case"left":d=this.Left;break;case"right":d=this.Right;break;case"left-up":d=this.LeftUp;break;case"right-up":d=this.RightUp;break;case"left-down":d=this.LeftDown;break;case"right-down":default:if(this.proxy){this._proxy.style.cursor="nw-resize"}d=this.RightDown}var e=this;$(h).on("mousedown.resize",function(j){e.Start(j,d)})},Start:function(l,h){if(l.stopPropagation){l.stopPropagation()}else{l.cancelBubble=true}this._fun=h;this._styleWidth=this._startWidth=this._obj.clientWidth;this._styleHeight=this._startHeight=this._obj.clientHeight;this._styleLeft=this._startLeft=this._obj.offsetLeft;this._styleTop=this._startTop=this._obj.offsetTop;this._sideLeft=l.clientX-this._styleWidth;this._sideRight=l.clientX+this._styleWidth;this._sideUp=l.clientY-this._styleHeight;this._sideDown=l.clientY+this._styleHeight;this._fixLeft=this._styleWidth+this._styleLeft;this._fixTop=this._styleHeight+this._styleTop;if(this.Scale){this.Ratio=Math.max(this.Ratio,0)||this._styleWidth/this._styleHeight;this._scaleLeft=this._styleLeft+this._styleWidth/2;this._scaleTop=this._styleTop+this._styleHeight/2}if(this.Max){var k=this.mxLeft,j=this.mxRight,f=this.mxTop,d=this.mxBottom;if(!!this._mxContainer){k=Math.max(k,0);f=Math.max(f,0);j=Math.min(j,this._mxContainer.clientWidth);d=Math.min(d,this._mxContainer.clientHeight)}j=Math.max(j,k+(this.Min?this.minWidth:0)+this._borderX);d=Math.max(d,f+(this.Min?this.minHeight:0)+this._borderY);this._mxSet=function(){this._mxRightWidth=j-this._styleLeft-this._borderX;this._mxDownHeight=d-this._styleTop-this._borderY;this._mxUpHeight=Math.max(this._fixTop-f,this.Min?this.minHeight:0);this._mxLeftWidth=Math.max(this._fixLeft-k,this.Min?this.minWidth:0)};this._mxSet();if(this.Scale){this._mxScaleWidth=Math.min(this._scaleLeft-k,j-this._scaleLeft-this._borderX)*2;this._mxScaleHeight=Math.min(this._scaleTop-f,d-this._scaleTop-this._borderY)*2}}if(this.proxy){this._proxy.style.display="block"}$document.on("mousemove.resize",this._fR);$document.on("mouseup.resize",this._fS);if(b){$(this._wrap).on("losecapture.resize",this._fS);this._wrap.setCapture()}else{$window.on("blur.resize",this._fS);l.preventDefault()}},Resize:function(j){if(window.getSelection){window.getSelection().removeAllRanges()}else{document.selection.empty()}this._fun(j);this._proxy.style.width=this._styleWidth+"px";this._proxy.style.height=this._styleHeight+"px";if(!this.isStatic){this._proxy.style.top=this._styleTop+"px";this._proxy.style.left=this._styleLeft+"px"}if(this.attachObj&&this.attachObj.length>0){for(var h=0,d=this.attachObj.length;hthis._mxScaleHeight){h=this._mxScaleHeight;f=this.RepairScaleWidth(h)}else{if(this.Min&&hthis._mxScaleWidth){f=this._mxScaleWidth;h=this.RepairScaleHeight(f)}else{if(this.Min&&fd){j=d;h=this.RepairScaleWidth(j)}else{if(this.Min&&j4||(new Date()-c.startDate)>500){t=1}if(t===1){m.style.display="block"}if(t===1||t===-1){clearInterval(k)}};if(isIE){m.style.display="block"}else{k=setInterval(q,20)}}o.fireEvent("dragstart",p)},drag:function(p){var n=this,o={X:1,Y:1};for(var m in o){var k=m.toLowerCase();if(!n[k+"Fixed"]){var q=(n[k+"Attr"].indexOf("-")===0?-1:1)*c["delta"+m];if(n["max"+m+"Attr"]!==null){q=Math.min(q,n["max"+m+"Attr"]-n["start"+m+"AttrInPage"])}if(n["min"+m+"Attr"]!==null){q=Math.max(q,n["min"+m+"Attr"]-n["start"+m+"AttrInPage"])}if(n.withProxy){try{d.setStyle(n.proxyEl,n[k+"Attr"],(n["start"+m+"AttrProxy"]+q)+"px")}catch(l){}n.proxyEl["__delta"+m]=q}else{d.setStyle(n.dragEl,n[k+"Attr"].replace(/^-/,""),(n["start"+m+"Attr"]+q)+"px")}}}n.fireEvent("drag",p)},dragend:function(m){var l=this;if(l.capture&&l.handleEl.releaseCapture){l.handleEl.releaseCapture()}if(l.withProxy){var k=l.proxyEl;k.style.display="none";if(!l.xFixed){d.setStyle(l.dragEl,l.xAttr.replace(/^-/,""),(l.startXAttr+k.__deltaX)+"px")}if(!l.yFixed){d.setStyle(l.dragEl,l.yAttr.replace(/^-/,""),(l.startYAttr+k.__deltaY)+"px")}}l.fireEvent("dragend",m)},render:function(){var k=this;if(k._rendered){return}k.addEvents("dragstart","drag","dragend");if(k.delegateContainer){$(k.delegateContainer).delegate(k.handleSelector,"mousedown.drag",function(l){k.handleEl=this;if(k.dragSelector){k.dragEl=$(this).closest(k.dragSelector)[0]}else{k.dragEl=k.handleEl}c.startDrag((l&&l.core)||l,k)})}else{k.handleEl=k.handleEl||k.dragEl;$(k.handleEl).on("mousedown.drag",function(l){c.startDrag(l,k)})}k._rendered=true},destroy:function(){var k=this;if(!k._rendered){return}if(k.delegateContainer){$(k.delegateContainer).off("mousedown.drag")}else{$(k.handleEl).off("mousedown.drag")}j.ComponentManager.unregister(this)}};var e=function(k){f.call(this,k)};e.MENTOR_CLASS=f;e.prototype={ctype:"SimpleResize",xAttr:"width",yAttr:"height",minXAttr:0,minYAttr:0};j.extraIf(e.prototype,f.prototype);var h=function(k){j.extra(this,k);j.Observable(this);if(!this.lazyRender){this.render()}};h.prototype={ctype:"RectSelector",proxyEl:null,handleEl:null,getProxy:(function(){var k=null;return function(){var l=this.proxyEl||k;if(!l){l=j.Dom.createNode("div",{className:"z-proxy-rectselector"});document.body.appendChild(l);l.style.display="none";this.proxyEl=l}return this.proxyEl}}()),dragstart:function(k){this.proxyEl=this.getProxy();this.proxyEl.style.display="block";if(this.handleEl.setCapture){this.handleEl.setCapture()}d.setPosition(this.proxyEl,c.startX,c.startY);d.setSize(this.proxyEl,1,1);this.fireEvent("dragstart",k)},drag:function(k){d.setPosition(this.proxyEl,Math.min(c.startX,c.pageX),Math.min(c.startY,c.pageY));d.setSize(this.proxyEl,Math.abs(c.deltaX),Math.abs(c.deltaY));this.fireEvent("drag",k)},dragend:function(k){if(this.handleEl.releaseCapture){this.handleEl.releaseCapture()}this.proxyEl.style.display="none";this.fireEvent("dragend",k)},render:function(){var k=this;if(k._rendered){return}k.addEvents("dragstart","drag","dragend");$(k.handleEl).on("mousedown.drag",function(l){if(l.target==k.handleEl){c.startDrag(l,k)}});k._rendered=true}};var a=function(k){f.call(this,k)};a.MENTOR_CLASS=f;a.prototype={ctype:"LayoutDrag",withProxy:true,isInline:false,dragstart:function(k){d.addClass(this.dragEl,"dragingModule");f.prototype.dragstart.call(this,k)},dragend:function(k){d.removeClass(this.dragEl,"dragingModule");f.prototype.dragend.call(this,k)},adjustLayout:function(o){var q=this,w=c.pageX,t=c.pageY,v=q.siblings,k=q.containers,r=q.isInline?"deltaDeltaX":"deltaDeltaY",u;if(o.type=="dragstart"||o.name=="dragstart"){if(q.__elAnim){q.__elAnim.pause()}}else{if(o.type=="drag"||o.name=="drag"){if(k||v){var A=false,n,m;u=d.getRect(q.dragEl);var p=d.getMargin(q.dragEl);if(w>=u.left-p[3]&&w<=u.right+p[1]&&t>=u.top-p[0]&&t<=u.bottom+p[2]){return}for(n=0;v!==null&&n=u.left-p[3]&&w<=u.right+p[1]&&t>=u.top-p[0]&&t<=u.bottom+p[2]){if(c[r]>0){m.parentNode.insertBefore(q.dragEl,m.nextSibling)}else{if(c[r]<0){m.parentNode.insertBefore(q.dragEl,m)}}A=true;break}}for(n=0;!A&&k!==null&&nu.left+1&&wu.top+1&&t=0){continue}if(e.indexOf("^"+a.Spliter)===0){var c=e.substring(a.Spliter.length+1,e.indexOf("$"));var f,l=[e];for(f=1;f3800){var c=Math.ceil(encodeURIComponent(d).length/3800);for(i=1;i0){r=new Date().getTime()+(r-0)}}try{u.setItem(t,r+"|"+p)}catch(q){m=h.OVERFLOW}return m},get:function(o){var m=h.SUCCESS,u=window.localStorage,t=j(o),r=null,n,q;try{r=u.getItem(t)}catch(p){m=h.FAILURE}if(r){n=r.indexOf("|");q=parseInt(r.substring(0,n),10);if(new Date(q).getTime()>new Date().getTime()||q===0){r=r.substring(n+1,r.length)}else{r=null;m=h.FAILURE;this.del(o)}}else{m=h.FAILURE}return r},del:function(n){var m=h.SUCCESS,r=window.localStorage,q=j(n),p=null;try{p=r.getItem(q)}catch(o){m=h.FAILURE}if(p){p=p.substring(p.indexOf("|")+1,p.length);m=h[p?"SUCCESS":"FAILURE"];if(p){r.removeItem(q)}}else{m=h.FAILURE}return m}}}function c(){return{set:function(n,o,m){f.Cookie.set(j(n),o,m);return h.SUCCESS},get:function(m){var n=f.Cookie.get(j(m));return n},del:function(m){var o=j(m),n=f.Cookie.get(o);f.Cookie.remove(o);return h[n?"SUCCESS":"FAILURE"]}}}k.set=function(n,o,m){if(!d){d=a()}return d.set.apply(d,arguments)};k.get=function(m){if(!d){d=a()}return d.get.apply(d,arguments)};k.remove=function(m){if(!d){d=a()}return d.del.apply(d,arguments)};f.Storage=k})();(function(){var b=window.Zving,a=b.Storage;b.Statable=function(d){var c=d,e;if(b.isElement(d)){e=b.id(d);$window.on("unload",function(){d.stateId=d._states=d._allStates=d._eventsHandler=d.addState=d.addStates=d.getState=d.setState=d.removeState=null})}else{e=c.id}c.stateId=c.stateId||b.pageId+"-"+e;c._states=c._states||{};c._allStates=["hidden","disabled"];c._eventsHandler={hidden:{show:[function(){c.setState("hidden",c.hidden)}],hidden:[function(){c.setState("hidden",c.hidden)}]},disabled:{disable:[function(){c.setState("hidden",c.hidden)}],enable:[function(){c.setState("hidden",c.hidden)}]}};c.addState=function(k,f,h){c._states[k]=c[k];c._eventsHandler[k]=c._eventsHandler[k]||{};var j=c._eventsHandler[k];if(f){j[f]=j[f]||[];if(!h){h=function(){c.setState(k,c[k])}}j[f].push(h);if(b.isElement(c)){$(c).on(f,h)}else{c.on(f,h)}}};c.addStates=function(){var f=arguments,h=f.length;while(h--){c._states[f[h]]=c[f[h]];c._eventsHandler[f[h]]={}}};c.getState=function(h){var f=a.get(c.stateId);if(f){f=b.JSON.parse(f);return f[h]}};c.setState=function(h,j){var f=a.get(c.stateId);if(f){f=b.JSON.parse(f)}else{f={}}f[h]=j;return a.set(c.stateId,b.JSON.stringify(f))};c.removeState=function(h){var f=a.get(c.stateId);if(f){f=b.JSON.parse(f);delete f[h];return a.set(c.stateId,b.JSON.stringify(f))}}}})();(function(){var c=window.Zving,b=c.getDom,a={};c.getForm=a.getForm=function(d){if(!d){return document.forms[0]}else{d=b(d);if(d&&d.tagName.toLowerCase()!=="form"){return null}return d}};c.selectAllCheckbox=function(j,e){var f=c.Node.getValue(j);var d=c.getByName(e);if(d){for(var h=0;h');e.push("");for(var j in m){var d=j,l,f="String";if(c.isString(m[j])){l=m[j];f="String"}else{if(c.isObject(m[j])){l=c.JSON.stringify(m[j])}}e.push('');e.push("");e.push("")}e.push("");return e.join("")};a.getQueryString=function(p,e){el=c.getForm(p);if(!el){alert("查找表单元素失败!"+p);return}e=e||function(j){return false};var q=[],k=el.elements,f=k.length,m,n=function(j,l){q.push(encodeURIComponent(j)+"="+encodeURIComponent(l+""))};for(m=0;m-1){n(o,el.value)}break;case"select-multiple":var d=el.options;for(var h=0;h-1){n(p,el.value)}break;case"select-multiple":var d=el.options;for(var h=0;h