亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? dhtmlxprotobar.js

?? WEB表格控件
?? JS
字號:
/*Copyright DHTMLX LTD. http://www.dhtmlx.com*/ 
 
 function dhtmlXProtobarObject(){
 return this;
}
 
 
 dhtmlXProtobarObject.prototype.setOnShowHandler=function(func){
 if(typeof(func)=="function")this.onShow=func;else this.onShow=eval(func);
};
 
 
 dhtmlXProtobarObject.prototype._getItemIndex=function(id){
 for(var i=0;i<this.itemsCount;i++)
{
 if(this.items[i].id==id)return i;
};
 return -1;
};
 
 dhtmlXProtobarObject.prototype.setGfxPath=function(path){
 this.sysGfxPath=path;
};
 
 
 dhtmlXProtobarObject.prototype.setOnHideHandler=function(func){
 if(typeof(func)=="function")this.onHide=func;else this.onHide=eval(func);
};
 
 dhtmlXProtobarObject.prototype.setItemAction=function(id,action){
 var z=this._getItemIndex(id);
 if(z>=0){
 this.items[z].setSecondAction(action);
};
};
 
 dhtmlXProtobarObject.prototype.getItem=function(itemId){
 var z=this._getItemIndex(itemId);
 if(z>=0)return this.items[z];
};
 
 dhtmlXProtobarObject.prototype.hideButtons=function(idList){
 if(!idList){
 for(var i=0;i<this.itemsCount;i++){
 var z=this.items[i].getTopNode();
 z.style.display="none";
 if(this.extraMode)z.parentNode.style.display="none";
 this.items[i].hide=1;
}
 return 0;
}
 
 var temp=idList.split(",");
 for(var i=0;i<temp.length;i++)
{
 this.hideItem(temp[i]);
};
};
 
 dhtmlXProtobarObject.prototype.showButtons=function(idList){
 if(!idList){
 for(var i=0;i<this.itemsCount;i++){
 var w=this.items[i].getTopNode();
 w.style.display="";
 if(this.extraMode)w.parentNode.style.display="";
 this.items[i].hide=0;
}
 return 0;
}
 
 var temp=idList.split(",");
 for(var i=0;i<temp.length;i++)
{
 this.showItem(temp[i]);
};
};
 
 dhtmlXProtobarObject.prototype.disableItem=function(itemId){
 var z=this.getItem(itemId);
 if(z){if(z.disable)z.disable();}
};
 
 dhtmlXProtobarObject.prototype.enableItem=function(itemId){
 var z=this.getItem(itemId);
 if(z){if(z.enable)z.enable();}
};
 
 
 dhtmlXProtobarObject.prototype.hideItem=function(itemId){
 var z=this.getItem(itemId);
 if(z){
 var w=z.getTopNode();
 w.style.display="none";
 if(this.extraMode)w.parentNode.style.display="none";
 z.hide=1;
 if(z.parentPanel){
 this._scrollClear(z.parentPanel);
 this._scrollCheck(z.parentPanel);
}
}
}
 
 dhtmlXProtobarObject.prototype.showItem=function(id){
 var z=this.getItem(id);
 if(z){
 var w=z.getTopNode();
 w.style.display="";
 if(this.extraMode)w.parentNode.style.display="";
 z.hide=0;
 if(z.parentPanel){
 this._scrollClear(z.parentPanel);
 this._scrollCheck(z.parentPanel);
}
}
}
 
 dhtmlXProtobarObject.prototype.setOnClickHandler=function(func){
 if(typeof(func)=="function")this.defaultAction=func;else this.defaultAction=eval(func);
};
 
 dhtmlXProtobarObject.prototype.setTitleText=function(newText){
 this.tname=newText;
 this.nameCell.innerHTML=newText;
 this.preNameCell.innerHTML=newText;
};
 
 
 dhtmlXProtobarObject.prototype.setBarSize=function(width,height){
 if(width)this.topNod.width=width;
 if(height)this.topNod.height=height;
};
 
 dhtmlXProtobarObject.prototype.resetBar=function(idList){
 for(var i=0;i<this.itemsCount;i++)
 this.hideItem(this.items[i].id);

 var temp=idList.split(",");
 for(var i=0;i<temp.length;i++)
{
 this.showItem(temp[i]);
};
};

 


 dhtmlXProtobarObject.prototype.loadXMLFor=function(file,itemId){
 var z=this._getItemIndex(itemId);
 if(z>=0)this._awaitXML=this.gitems[z];
 this.xmlLoader.loadXML(file);
};


 


 dhtmlXProtobarObject.prototype.loadXML=function(file,afterCall){
 this.waitCall=afterCall||0;
 this.xmlLoader.loadXML(file);};

 
 dhtmlXProtobarObject.prototype.loadXMLString=function(xmlString,afterCall){
 this.waitCall=afterCall||0;
 this.xmlLoader.loadXMLString(xmlString);};

 
 dhtmlXProtobarObject.prototype.showBar=function(){
 this.topNod.style.display="";
 if((this.topNod.ieFix)&&(this.topNod.style.position=="absolute")){
 this.topNod.ieFix.style.display="";
 this.topNod.ieFix.style.position="absolute";
 this.topNod.ieFix.style.top=this.topNod.style.top;
 this.topNod.ieFix.style.left=this.topNod.style.left;
 this.topNod.ieFix.style.width=this.topNod.offsetWidth+"px";
 this.topNod.ieFix.style.height=this.topNod.offsetHeight+"px";
}
 if(this.onShow)this.onShow();
};
 
 
 
 dhtmlXProtobarObject.prototype.hideBar=function(){
 this.topNod.style.display="none";
 if(this.topNod.ieFix)this.topNod.ieFix.style.display="none";
 if(this.onHide)this.onHide();
};
 
 
 dhtmlXProtobarObject.prototype.setBarAlign=function(align){
 if((align=="left")||(align=="top")){this.preNameCell.innerHTML="";
 this.preNameCell.style.display="none";
 this.nameCell.style.display="";
 this.nameCell.width="100%";
 this.nameCell.innerHTML=this.tname;
 
};
 if((align=="center")||(align=="middle")){
 this.preNameCell.style.display="";
 this.preNameCell.width="50%";
 this.nameCell.style.display="";
 this.nameCell.width="50%";
 this.nameCell.innerHTML=this.tname;
 this.preNameCell.innerHTML=this.tname;
};
 if((align=="right")||(align=="bottom")){
 this.nameCell.innerHTML="";
 this.nameCell.style.display="none";
 this.preNameCell.style.display="";
 this.preNameCell.width="100%";
 this.preNameCell.innerHTML=this.tname;
};
};
 
 dhtmlXProtobarObject.prototype.dummyFunc=function(){return true;};
 dhtmlXProtobarObject.prototype.badDummy=function(){return false;};
 
 

 
function dhtmlXButtonPrototypeObject(){
 return this;
};
 
 dhtmlXButtonPrototypeObject.prototype.setAction=function(func){
 if(typeof(func)=="function")this.action=func;else this.action=eval(func);
}
 
 dhtmlXButtonPrototypeObject.prototype.setSecondAction=function(func){
 if(typeof(func)=="function")this.persAction=func;else this.persAction=eval(func);
};
 
 dhtmlXButtonPrototypeObject.prototype.enable=function(){
 if(this.disableImage)this.imageTag.src=this.src;
 else 
 if(!this.className)
 this.topNod.className=this.objectNode.className;
 else 
 this.topNod.className=this.className;

 if(this.textTag)
 this.textTag.className=this.textClassName;
 
 this.topNod.onclick=this._onclickX;
 this.topNod.onmouseover=this._onmouseoverX;
 this.topNod.onmouseout=this._onmouseoutX;
 this.topNod.onmousedown=this._onmousedownX;
 this.topNod.onmouseup=this._onmouseupX;
};
 
 dhtmlXButtonPrototypeObject.prototype.disable=function(){
 if(this.disableImage)
{
 this.imageTag.src=this.disableImage;
}
 else this.topNod.className="iconGray";
 
 if(this.textTag)
 this.textTag.className="buttonTextDisabled";
 
 
 this.topNod.onclick=this.dummy;
 this.topNod.onmouseover=this.dummy;
 this.topNod.onmouseout=this.dummy;
 this.topNod.onmousedown=this.dummy;
 this.topNod.onmouseup=this.dummy;
};

 
 dhtmlXButtonPrototypeObject.prototype._onclickX=function(e,that){
 if(!that)that=this.objectNode;
 if(that.topNod.dstatus)return;
 if((!that.persAction)||(that.persAction()))
 if(that.action){that.action(that.id);}
};
 
 dhtmlXButtonPrototypeObject.prototype.setHTML=function(htmlText){
 this.topNod.innerHTML=htmlText;
};
 
 dhtmlXButtonPrototypeObject.prototype.setAltText=function(imageText){
 this.imageTag.alt=imageText;
};
 
 dhtmlXButtonPrototypeObject.prototype.setImage=function(imageSrc,disabledImageSrc){
 this.src=imageSrc;
 if(disabledImageSrc)this.disableImage=disabledImageSrc;

 if(this.topNod.onclick==this.dummy)
{if(disabledImageSrc)this.imageTag.src=disabledImageSrc;}
 else
 this.imageTag.src=imageSrc;
};
 
 dhtmlXButtonPrototypeObject.prototype.dummy=function(){};
 
 dhtmlXButtonPrototypeObject.prototype.getTopNode=function(){return this.topNod;}
 
 dhtmlXButtonPrototypeObject.prototype._onmouseoverY=function(){
 if(this._mvImage)
 this.imageTag.src=this._mvImage;
 else
 this.topNod.className=this.className+'Over';
};
 
 dhtmlXButtonPrototypeObject.prototype._onmouseoutY=function(){
 if(this._mnImage)
 this.imageTag.src=this._mnImage;
 else
 this.topNod.className=this.className;
};
 
 dhtmlXButtonPrototypeObject.prototype._onmousedownX=function(){this.className=this.objectNode.className+'Down';return true;};
 
 dhtmlXButtonPrototypeObject.prototype._onmouseupX=function(){this.className=this.objectNode.className;return true;};


 
 dhtmlXButtonPrototypeObject.prototype._onmouseoutX=function(e){
 if(!e)e=event;
  if(this.timeoutop)clearTimeout(this.timeoutop);
 this.timeoutop=setTimeout(this.objectNode._delayedTimerCall(this.objectNode,"_onmouseoutY"),100);
};
 
 dhtmlXButtonPrototypeObject.prototype._onmouseoverX=function(e){
 if(!e)e=event;
  if(this.timeoutop)clearTimeout(this.timeoutop);
 this.timeoutop=setTimeout(this.objectNode._delayedTimerCall(this.objectNode,"_onmouseoverY"),50);
};

 dhtmlXButtonPrototypeObject.prototype._delayedTimerCall=function(object,functionName,time){
 this.callFunc=function(){
 eval("object."+functionName+"();");
}
 return this.callFunc;
}
 dhtmlXButtonPrototypeObject.prototype._arg2obj=function(n,list){
 var nAtr=new Object();
 for(var i=0;i<n.length;i++)
 nAtr[list[i]]=n[i];
 return nAtr;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人黄色综合网站| 欧美精品v国产精品v日韩精品| 欧美日韩精品免费观看视频| 国产精品久久久久久久裸模| 国产精品原创巨作av| 欧美精品在线观看一区二区| 亚洲免费在线看| av成人免费在线观看| 国产午夜精品一区二区三区嫩草| 韩国精品一区二区| 精品国产一区二区三区不卡| 国内偷窥港台综合视频在线播放| 日韩一二三区不卡| 另类欧美日韩国产在线| 日韩免费看的电影| 美女视频一区二区| 精品国产精品网麻豆系列| 国内精品国产成人国产三级粉色 | 日韩视频中午一区| 日韩国产欧美三级| 欧美第一区第二区| 成人免费高清在线观看| 最新热久久免费视频| 91啦中文在线观看| 天天综合日日夜夜精品| 欧美日韩1234| 韩国成人精品a∨在线观看| 久久久久国产精品人| 波多野结衣91| 亚洲成人www| 日韩欧美一区二区免费| 国产精品系列在线播放| 亚洲视频一区二区在线观看| 在线观看av一区二区| 免费观看91视频大全| 国产女同性恋一区二区| 91天堂素人约啪| 日韩1区2区3区| 中文字幕免费观看一区| 欧美色图12p| 狠狠色丁香久久婷婷综合丁香| 国产精品萝li| 在线电影欧美成精品| 国产在线不卡视频| 亚洲综合视频网| 久久尤物电影视频在线观看| 91老师国产黑色丝袜在线| 男人的天堂亚洲一区| 国产日韩欧美综合在线| 欧美少妇xxx| 成人网男人的天堂| 久久99日本精品| 视频一区视频二区中文| 视频一区国产视频| 一区二区在线观看免费视频播放| 国产视频一区在线观看| 精品久久久网站| 欧美高清dvd| 欧日韩精品视频| 91丨九色丨黑人外教| 国产精品18久久久久久vr | 午夜视频在线观看一区二区三区| 中文av一区特黄| 国产欧美综合在线观看第十页| 欧美一级午夜免费电影| 欧美日韩电影在线播放| 色综合天天综合狠狠| caoporm超碰国产精品| 国产一区二区三区在线观看精品| 日韩精品欧美精品| 亚洲成人av一区二区| 亚洲黄色片在线观看| 中文字幕在线不卡一区| 国产精品久久久久久久久免费丝袜| 久久麻豆一区二区| 国产亚洲精久久久久久| 国产欧美一区二区三区沐欲| 久久久久久**毛片大全| 久久综合五月天婷婷伊人| 日韩欧美精品在线| 精品国产乱码久久久久久浪潮| 欧美r级在线观看| 欧美精品一区二区三区在线播放| 精品福利二区三区| 久久久久久夜精品精品免费| 国产午夜亚洲精品不卡| 亚洲国产精品精华液2区45| 国产精品蜜臀在线观看| 亚洲欧美一区二区久久| 精品国产髙清在线看国产毛片| 久久综合色婷婷| 精品国产一区二区三区四区四 | 91麻豆精品视频| 色综合久久久久综合| 色8久久精品久久久久久蜜| 欧美性高清videossexo| 制服.丝袜.亚洲.另类.中文| 911国产精品| 久久综合色鬼综合色| 国产精品你懂的在线欣赏| 亚洲视频在线一区二区| 午夜精品一区二区三区电影天堂 | 制服丝袜av成人在线看| 日韩精品一区二区三区在线| 欧美激情一区在线| 一区二区三区 在线观看视频| 日日摸夜夜添夜夜添亚洲女人| 久久成人18免费观看| 在线免费观看视频一区| gogo大胆日本视频一区| 日韩三级精品电影久久久 | 色成年激情久久综合| 欧美日本视频在线| 久久久亚洲高清| 亚洲资源在线观看| 韩日欧美一区二区三区| 色综合久久88色综合天天| 91精品国产欧美一区二区18| 欧美激情中文字幕| 图片区日韩欧美亚洲| 国产大陆亚洲精品国产| 欧美午夜在线一二页| 精品国产一二三| 亚洲一区二区三区爽爽爽爽爽| 韩国精品主播一区二区在线观看 | 亚洲色图清纯唯美| 日韩成人免费电影| 99免费精品在线观看| 91精品国产入口| 成人免费在线观看入口| 久久国产精品99精品国产| 色综合天天综合网天天狠天天| 精品免费99久久| 亚洲成年人影院| 99麻豆久久久国产精品免费优播| 欧美电视剧免费观看| 亚洲制服丝袜av| av一区二区不卡| 国产亚洲美州欧州综合国| 日韩成人一级片| 91行情网站电视在线观看高清版| 国产网红主播福利一区二区| 青青草97国产精品免费观看无弹窗版| 国产亚洲欧美日韩在线一区| 亚洲超碰97人人做人人爱| 不卡电影免费在线播放一区| 久久一区二区三区国产精品| 日韩电影网1区2区| 欧美日韩亚洲综合在线| 亚洲色图第一区| 不卡av电影在线播放| 国产丝袜在线精品| 国产一区在线不卡| 日韩欧美精品在线视频| 日本大胆欧美人术艺术动态| 欧美日韩在线播放一区| 亚洲乱码国产乱码精品精的特点 | 老司机免费视频一区二区| 欧美视频三区在线播放| 亚洲美女偷拍久久| 不卡一二三区首页| 国产精品久久久久一区二区三区| 国产乱人伦偷精品视频不卡| 精品久久一区二区三区| 精品一区二区三区免费毛片爱| 91精品国产综合久久精品| 无码av中文一区二区三区桃花岛| 欧美性xxxxxxxx| 亚洲综合小说图片| 欧美日韩激情一区| 婷婷综合另类小说色区| 欧美久久久一区| 毛片一区二区三区| 欧美电影免费观看高清完整版| 久久成人久久爱| 久久久久久久精| 成人高清视频免费观看| 中文字幕一区二区三区视频| 91在线码无精品| 亚洲国产视频直播| 这里只有精品视频在线观看| 六月丁香婷婷色狠狠久久| 亚洲不卡一区二区三区| 欧美日韩一区三区| 日本午夜一本久久久综合| 日韩久久久精品| 成人激情黄色小说| 一区二区三区精品在线观看| 欧美日韩国产不卡| 久久电影网电视剧免费观看| 国产亚洲综合在线| 色先锋资源久久综合| 日韩精品视频网| 久久尤物电影视频在线观看| av网站一区二区三区| 午夜av一区二区| 久久久99久久精品欧美| 色偷偷一区二区三区| 日日夜夜免费精品| 国产精品三级av|