﻿Type.registerNamespace("Telerik.Web.UI");
Telerik.Web.UI.RadToolTip=function(_1){
Telerik.Web.UI.RadToolTip.initializeBase(this,[_1]);
this._offsetX=2;
this._offsetY=6;
this._position=Telerik.Web.UI.ToolTipPosition.BottomCenter;
this._horizontalPosition=null;
this._verticalPosition=null;
this._targetControlID=null;
this._serverTargetControlID=null;
this._targetControl=null;
this._popupElement=null;
this._tableElement=null;
this._contentCell=null;
this._titleElement=null;
this._contentElement=null;
this._calloutElement=null;
this._closeLink=null;
this._popupBehavior=null;
this._popupVisible=false;
this._popupStickyHandler=null;
this._skin="Default";
this._title="";
this._text="";
this._width="";
this._height="";
this._relativeTo=Telerik.Web.UI.ToolTipRelativeDisplay.Mouse;
this._contentScrolling=Telerik.Web.UI.ToolTipScrolling.Auto;
this._showEvent=Telerik.Web.UI.ToolTipShowEvent.OnMouseOver;
this._sticky=false;
this._manualClose=false;
this._mouseTrailing=false;
this._showCallout=true;
this._showDelayRef=null;
this._autoCloseRef=null;
this._showDelay=300;
this._autoCloseDelay=2000;
this._hideDelay=100;
this._animation=Telerik.Web.UI.ToolTipAnimation.None;
this._tooltipAnimation=null;
};
Telerik.Web.UI.RadToolTip.prototype={initialize:function(){
Telerik.Web.UI.RadToolTip.callBaseMethod(this,"initialize");
if(!this._targetControl){
this._targetControl=$get(this._targetControlID);
}
var _2=this.get_Text();
if(this._targetControl&&!_2){
_2=this._targetControl.getAttribute("title");
if(_2){
this._targetControl.removeAttribute("title");
}
this._text=_2;
}
this._registerMouseHandlers(this._targetControl,true);
this.set_Position(this._position);
},dispose:function(){
if(this._popupBehavior){
this._popupBehavior.dispose();
this._popupBehavior=null;
}
if(this._tooltipAnimation){
this._tooltipAnimation.dispose();
}
this._registerPopupHandlers(false);
this._registerMouseHandlers(this._targetControl,false);
if(this._closeLinkHandler&&this._closeLink){
$removeHandler(this._closeLink,"click",this._closeLinkHandler);
this._closeLinkHandler=null;
}
Telerik.Web.UI.RadToolTip.callBaseMethod(this,"dispose");
},requestShow:function(){
this._resetShowDelay();
},hide:function(_3){
if(true==_3&&this._manualClose){
return false;
}
this._hide();
return true;
},clone:function(_4,_5){
if(!_4){
alert("clone error: No target element specified");
return;
}
var _6=this._getEventsParameter();
var _7=this._getPropertiesParameter();
_7["TargetControlID"]=_4.getAttribute("id");
if(!_7["TargetControlID"]){
_7["TargetControl"]=_4;
}
if(_5){
_7["Text"]=_5;
}
var _8=$create(Telerik.Web.UI.RadToolTip,_7,_6,null,document.createElement("SPAN"));
return _8;
},show:function(){
this._createUI();
if(!this._targetControl){
return;
}
var _9=new Sys.CancelEventArgs();
this.raiseEvent("BeforeShow",_9);
if(_9.get_cancel()){
return;
}
this._registerPopupHandlers(true);
this._getToolTipController().setCurrentToolTip(this);
this._fixIeHeight(this._tableElement,this._height);
if(this._animation==Telerik.Web.UI.ToolTipAnimation.None){
this._show();
this._afterShow();
}else{
this._playAnimation();
}
},showLoadingMessage:function(_a){
if(_a){
var _b=document.createElement("DIV");
_b.className=this._getFullSkinName()+" LoadingSign";
this._contentCell.appendChild(_b);
}else{
this._contentCell.innerHTML="";
}
},set_ContentElement:function(_c){
this._contentCell.innerHTML="";
if(_c.parentNode&&_c.parentNode.removeChild){
_c.parentNode.removeChild(_c);
}
this._contentCell.appendChild(_c);
_c.style.display="";
this._contentElement=_c;
},get_ContentElement:function(){
return this._contentElement;
},set_Content:function(_d){
_textElement=document.createElement("DIV");
_textElement.innerHTML=this._text;
this._contentElement=_textElement;
this._contentCell.appendChild(_textElement);
},get_Content:function(){
return this._contentElement?this._contentElement.innerHTML:"";
},cancelAutoCloseDelay:function(){
if(this._autoCloseRef){
window.clearTimeout(this._autoCloseRef);
this._autoCloseRef=0;
}
},cancelShowDelay:function(){
if(this._showDelayRef){
window.clearTimeout(this._showDelayRef);
this._showDelayRef=null;
}
this._getToolTipController().cancelSpecificShowRequest(this);
},_getToolTipController:function(){
return Telerik.Web.UI.RadToolTipController.getInstance();
},_resetAutoCloseDelay:function(){
this.cancelAutoCloseDelay();
if(this._manualClose||this._sticky){
return;
}
if(this._autoCloseDelay){
var _e=this;
this._autoCloseRef=window.setTimeout(function(){
_e.hide(true);
},this._autoCloseDelay);
}
},_resetShowDelay:function(){
this.cancelShowDelay();
var _f=this;
var _10=function(){
_f._getToolTipController().showTootlip(_f);
_f.cancelShowDelay();
};
this._showDelayRef=window.setTimeout(_10,this._showDelay);
},_show:function(){
var _11=null;
try{
_11=this._getCalculatedPopupBounds();
}
catch(e){
var _12=this;
window.setTimeout(function(){
_12._addToolTipToDocument();
},10);
return;
}
var x=_11.x;
var y=_11.y;
this._setPopupVisible(x,y);
this._resetAutoCloseDelay();
this._popupVisible=true;
},_hide:function(){
if(!this._popupBehavior||!this._popupVisible){
return;
}
if(this._tooltipAnimation){
this._tooltipAnimation.stop();
}
this.cancelShowDelay();
this.cancelAutoCloseDelay();
var _15=new Sys.CancelEventArgs();
this.raiseEvent("BeforeHide",_15);
if(_15.get_cancel()){
return;
}
if(this._tooltipAnimation){
this._tooltipAnimation.play(true);
}else{
this._afterHide();
}
},_afterHide:function(){
this._popupBehavior.hide(true);
this._popupVisible=false;
this._getToolTipController().notifyToolTipClosed(this);
this.raiseEvent("Hide");
this._registerPopupHandlers(false);
},_afterShow:function(){
this.raiseEvent("Show");
},_playAnimation:function(){
var _16=function(){
var _17=this.controller;
var _18=_17._getCalculatedPopupBounds();
_17._setPopupVisible(_18.x,_18.y);
var _19=Telerik.Web.DomElement.getBounds(_17._popupElement);
_17._popupBehavior.hide();
this.set_EndBounds(_19);
};
if(!this._tooltipAnimation){
if(this._animation==Telerik.Web.UI.ToolTipAnimation.Fade){
this._tooltipAnimation=new Telerik.Web.UI.Animations.FadeAnimation(this,null,null,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=function(){
this.controller._show();
};
}else{
if(this._animation==Telerik.Web.UI.ToolTipAnimation.Slide){
this._tooltipAnimation=new Telerik.Web.UI.Animations.SlideAnimation(this,null,null,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=_16;
}else{
if(this._animation==Telerik.Web.UI.ToolTipAnimation.FlyIn){
this._tooltipAnimation=new Telerik.Web.UI.Animations.FlyInAnimation(this,null,null,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=_16;
}else{
if(this._animation==Telerik.Web.UI.ToolTipAnimation.Resize){
this._tooltipAnimation=new Telerik.Web.UI.Animations.ResizeAnimation(this,0.2,50,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=_16;
}
}
}
}
}
if(this._tooltipAnimation){
this._tooltipAnimation.onShowEnd=function(){
this.controller._show();
this.controller._afterShow();
};
this._tooltipAnimation.onHideEnd=function(){
this.controller._afterHide();
};
this._tooltipAnimation.play();
}
},_isMouseOverElement:function(e,_1b){
var _1c=null;
try{
_1c=Telerik.Web.DomElement.getBounds(_1b);
}
catch(e){
return false;
}
if(e&&e.target.tagName=="SELECT"&&e.clientX<0){
return true;
}
var x=e.clientX-2;
var y=e.clientY-2;
var _1f=TelerikCommonScripts.containsPoint(_1c,x,y);
return _1f;
},_onMouseOver:function(e){
this._logMousePosition(e);
this._resetShowDelay();
this._getToolTipController().requestShow(this);
if(e){
e.stopPropagation();
}
},_onMouseMove:function(e){
this._logMousePosition(e);
this._resetAutoCloseDelay();
if(this._mouseTrailing&&this.isVisible()){
this._show();
}
},_onMouseOut:function(e){
var _23=this._isMouseOverElement(e,this._targetControl);
if(!_23){
this.cancelShowDelay();
if(!this._sticky){
if(this._hideDelay>0){
var _24=this;
window.setTimeout(function(){
_24.hide(true);
},this._hideDelay);
}else{
this.hide(true);
}
}
}
},_onClick:function(e){
this._onMouseOver(e);
e.returnValue=false;
e.cancelBubble=true;
return false;
},_onRightClick:function(e){
this._onMouseOver(e);
e.returnValue=false;
e.cancelBubble=true;
return false;
},_registerMouseHandlers:function(_27,_28){
if(true==_28){
var _29={};
var _2a=Telerik.Web.UI.ToolTipShowEvent;
if(this._showEvent==_2a.OnMouseOver){
_29["mouseover"]=this._onMouseOver;
_29["mousemove"]=this._onMouseMove;
_29["mouseout"]=this._onMouseOut;
}
if(this._showEvent==_2a.OnClick){
_29["click"]=this._onClick;
}
if(this._showEvent==_2a.OnRightClick){
_29["contextmenu"]=this._onRightClick;
}
if(this._showEvent==_2a.OnFocus){
_29["focus"]=this._onMouseOver;
_29["blur"]=this._onMouseOut;
}
$addHandlers(_27,_29,this);
}else{
if(_27){
$clearHandlers(_27);
}
}
},_registerPopupHandlers:function(_2b){
if(true==_2b){
if(this._sticky||this._position==Telerik.Web.UI.ToolTipPosition.Center){
this._popupStickyHandler=Function.createDelegate(this,this._onPopupStickyMouseOut);
$addHandler(this._tableElement,"mouseout",this._popupStickyHandler);
this.set_Sticky(true);
}
}else{
if(this._popupStickyHandler){
$removeHandler(this._tableElement,"mouseout",this._popupStickyHandler);
this._popupStickyHandler=null;
}
}
},_onPopupStickyMouseOut:function(e){
var _2d=this._isMouseOverElement(e,this._tableElement);
if(!_2d&&!this._manualClose){
this.hide();
}
},_getPropertiesParameter:function(){
if(!this._propertiesParameter){
var _2e={};
for(var _2f in Telerik.Web.UI.RadToolTip.prototype){
var _30=this[_2f];
if(typeof (_30)=="function"&&_2f.indexOf("get_")==0){
var _31=_2f.substring(4);
if(null==this["set_"+_31]){
continue;
}
var _32=_30.call(this);
if((typeof (_32)!="boolean")&&(null==_32||""==_32)){
continue;
}
_2e[_31]=_32;
if(_31=="Skin"){
break;
}
}
}
this._propertiesParameter=_2e;
}
var _33=this._cloneObject(this._propertiesParameter);
return _33;
},_getEventsParameter:function(){
if(!this._eventsParameter){
var _34={};
var _35=this.get_events();
var _36=["BeforeShow","Show","BeforeHide","Hide"];
for(var i=0;i<_36.length;i++){
var _38=_36[i];
var _39=_35._getEvent(_38);
if(_39&&typeof (eval(_39)=="function")){
_34[_38]=eval(_39[0]);
}
}
this._eventsParameter=_34;
}
return this._eventsParameter;
},_cloneObject:function(_3a){
var _3b={};
for(var _3c in _3a){
_3b[_3c]=_3a[_3c];
}
return _3b;
},_getPosRelativeToMouse:function(){
var loc=Telerik.Web.DomElement.getLocation(this._targetControl);
var _3e=loc.x;
var _3f=loc.y;
var pos=this._getMousePosition();
var _41=pos.clientX;
var _42=pos.clientY;
if(Telerik.Web.Browser.renderMode!=Telerik.Web.Browser.QuirksMode){
_3e-=document.documentElement.scrollLeft;
_3f-=document.documentElement.scrollTop;
}
var _43=_41-_3e;
var _44=_42-_3f;
return {x:_43,y:_44};
},_logMousePosition:function(e){
if(!e){
return;
}
this._mouseX=e.clientX;
this._mouseY=e.clientY;
},_getMousePosition:function(){
var obj={};
obj.clientX=this._mouseX;
obj.clientY=this._mouseY;
return obj;
},_getCalculatedPopupBounds:function(){
var x=0;
var y=0;
var _49=0;
var _4a=0;
var _4b=(this._popupElement.style.display=="none")?true:false;
var _4c=this._popupElement.style.left;
var _4d=this._popupElement.style.top;
this._popupElement.style.display="";
this._setOverflow();
var _4e=Telerik.Web.DomElement.getBounds(this._popupElement);
var _4f=parseInt(TelerikCommonScripts.getCurrentStyle(this._calloutElement,"marginLeft"));
var _50=parseInt(TelerikCommonScripts.getCurrentStyle(this._calloutElement,"marginTop"));
if(isNaN(_4f)){
_4f=0;
}
if(isNaN(_50)){
_50=0;
}
var _51=0;
var _52=0;
if(this._calloutElement){
var _53=Telerik.Web.DomElement.getBounds(this._calloutElement);
if(_53){
if(_53.width){
_51=_53.width;
}
if(_53.height){
_52=_53.height;
}
}
}
if(_4b){
this._popupElement.style.display="none";
}
var _54=_4e.width;
var _55=_4e.height;
var _56=this._horizontalPosition;
var _57=this._verticalPosition;
var _58=Telerik.Web.DomElement.getBounds(this._targetControl);
if((this._mouseTrailing||this._relativeTo==Telerik.Web.UI.ToolTipRelativeDisplay.Mouse)){
var pos=this._getPosRelativeToMouse();
x=pos.x;
y=pos.y;
}else{
_49=_58.width;
_4a=_58.height;
}
switch(_56){
case 2:
x+=-parseInt(_54/2-_49/2);
x+=this._offsetX;
break;
case 3:
x+=_49;
x-=_4f;
x+=this._offsetX;
break;
case 1:
default:
x+=-_54;
x+=(-_51-_4f);
x-=this._offsetX;
break;
}
switch(_57){
case 2:
y+=-parseInt(_55/2-_4a/2);
y+=this._offsetY;
break;
case 1:
y-=_55;
y-=_52+_50;
y-=this._offsetY;
break;
case 3:
default:
y+=_4a;
y-=_50;
y+=this._offsetY;
break;
}
var obj={};
obj.x=x;
obj.y=y;
obj.width=_4e.width;
obj.height=_4e.height;
return obj;
},_fixIeHeight:function(_5b,_5c){
if("CSS1Compat"==document.compatMode){
var _5d=(_5b.offsetHeight-parseInt(_5b.style.height));
if(_5d>0){
var _5e=(parseInt(_5b.style.height)-_5d);
if(_5e>0){
_5b.style.height=_5e+"px";
}
}
}
},_refreshTitle:function(){
if(null==this._titleElement){
return;
}
this._titleElement.innerHTML=this._title;
this._titleElement.style.display=(this._title)?"":"none";
},_createUI:function(){
if(!this._popupElement){
var _5f=this.get_id();
var _60="RadToolTipWrapper_"+_5f;
var _61=document.createElement("DIV");
_61.id=_60;
_61.className=this._getFullSkinName()+(this.get_ShowCallout()?" visiblecallout":"");
_61.setAttribute("unselectable","on");
this._popupElement=_61;
var _62=document.createElement("DIV");
_62.className="ToolTipCallout "+this._getCalloutPosition(this._position);
_62.innerHTML="&nbsp;";
this._calloutElement=_62;
var _63=document.createElement("TABLE");
_63.className="ToolTipWrapper";
_63.style.width=this._width;
_63.style.height=this._height;
this._tableElement=_63;
var _64=["ToolTipTopLeft","ToolTipTopCenter","ToolTipTopRight","ToolTipLeftMiddle","ToolTipContent","ToolTipRightMiddle","ToolTipBottomLeft","ToolTipBottomCenter","ToolTipBottomRight"];
var _65=0;
for(var i=1;i<=3;i++){
var _67=_63.insertRow(-1);
for(var j=1;j<=3;j++){
var _69=_67.insertCell(-1);
_69.innerHTML="&nbsp;";
_69.className=_64[_65];
_65++;
}
}
var _6a=_63.rows[0].cells[1];
_6a.innerHTML="";
var _6b=document.createElement("DIV");
_6b.className="ToolTipTitlebar VisibleTitlebar";
_6b.style.display="none";
this._titleElement=_6b;
this._refreshTitle();
_6a.appendChild(_6b);
if(this._manualClose){
var _6c=document.createElement("A");
_6c.href="javascript: void(0);";
_6c.className="CloseButton";
this._closeLinkHandler=Function.createDelegate(this,function(){
this.hide();
});
$addHandler(_6c,"click",this._closeLinkHandler);
this._closeLink=_6c;
var _6d=document.createElement("SPAN");
_6d.innerHTML="Close";
_6c.title="Close";
_6c.appendChild(_6d);
_6a.appendChild(_6c);
}
var _6e=_63.rows[1].cells[1];
_6e.vAlign="top";
_6e.innerHTML="";
this._contentCell=_6e;
if(this._text){
this.set_Content(this._text);
}else{
var _6f=null;
var _70=this.get_id();
if(_70){
_6f=$get(_70);
}
if(_6f&&_6f.innerHTML){
this.set_ContentElement(_6f);
}
}
_61.appendChild(_62);
_61.appendChild(_63);
this._popupElement.style.display="none";
this._addToolTipToDocument();
}
if(!this._popupBehavior){
this._popupBehavior=$create(Telerik.Web.PopupBehavior,{"id":(new Date()-100)+"PopupBehavior","parentElement":this._targetControl},null,null,this._popupElement);
}
},_addToolTipToDocument:function(){
var _71={"TH":true,"TD":true,"TR":true};
var _72=this._targetControl;
if(_71[this._targetControl.tagName.toUpperCase()]){
_72=this._getParentByTagName(this._targetControl,"TABLE");
}
if(_72){
if(_72.parentNode&&_72.parentNode.insertBefore){
_72.parentNode.insertBefore(this._popupElement,_72);
}
}else{
alert("Could not insert tooltip element before TargetControl "+this._targetControl);
}
},_getParentByTagName:function(_73,_74){
var _75=_73;
_74=_74.toUpperCase();
while(_75.tagName.toUpperCase()!=_74){
_75=_75.parentNode;
if(!_75){
break;
}
}
return _75;
},_getFullSkinName:function(){
return "radtooltip_"+this._skin;
},_getUniqueString:function(){
return ""+(new Date()-100);
},_getCalloutPosition:function(_76){
with(Telerik.Web.UI.ToolTipPosition){
switch(_76){
case TopLeft:
return "BottomRight";
case TopCenter:
return "BottomCenter";
case TopRight:
return "BottomLeft";
case MiddleLeft:
return "MiddleRight";
case Center:
return "Center";
case MiddleRight:
return "MiddleLeft";
case BottomLeft:
return "TopRight";
case BottomCenter:
return "TopCenter";
case BottomRight:
return "TopLeft";
}
}
return "";
},_getHorizontalSide:function(_77){
return parseInt((_77+"").charAt(1));
},_getVerticalSide:function(_78){
return parseInt((_78+"").charAt(0));
},_setPopupVisible:function(x,y){
this._popupBehavior.set_x(x);
this._popupBehavior.set_y(y);
this._popupBehavior.show();
if(!this.get_Width()){
this._popupElement.style.width="";
}
this._popupElement.style.zIndex="50000";
},_setOverflow:function(){
var _7b=this._contentScrolling;
if(_7b==Telerik.Web.UI.ToolTipScrolling.Auto){
return;
}
var el=this._contentElement;
if(!el){
return;
}
var _7d="";
with(Telerik.Web.UI.ToolTipScrolling){
switch(_7b){
case Auto:
_7d="auto";
break;
case None:
_7d="hidden";
break;
case X:
_7d="";
el.style.overflowX="scroll";
break;
case Y:
_7d="";
el.style.overflowY="scroll";
break;
case Both:
_7d="scroll";
}
}
var _7e=el.parentNode;
el.style.display="none";
var _7f=Telerik.Web.DomElement.getBounds(_7e).height;
el.style.height=_7f+"px";
if(!el.style.overflowX&&!el.style.overflowY){
el.style.overflow=_7d;
}
el.style.display="";
},_getLeftOffset:function(){
var _80=Telerik.Web.UI.ToolTipPosition;
if(_80.Left==this._position){
return (-1*this._targetControl.offsetWidth)+this._offsetX;
}else{
if(_80.Right==this._position){
return this._targetControl.offsetWidth+this._offsetX;
}else{
return this._offsetX;
}
}
},_getTopOffset:function(){
var _81;
var _82=Telerik.Web.UI.ToolTipPosition;
if(_82.Top==this._position){
_81=(-1*this._targetControl.offsetHeight)+this._offsetY;
}else{
if(_82.Bottom==this._position){
_81=this._targetControl.offsetHeight+this._offsetY;
}else{
_81=this._offsetY;
}
}
return _81;
},isVisible:function(){
return this._popupVisible;
},get_TargetControl:function(){
return this._targetControl;
},set_TargetControl:function(_83){
if(this._targetControl!=_83){
this._targetControl=_83;
}
},get_TargetControlID:function(){
return this._targetControlID;
},set_TargetControlID:function(_84){
if(this._targetControlID!=_84){
this._targetControlID=_84;
}
},get_ServerTargetControlID:function(){
return this._serverTargetControlID;
},_set_ServerTargetControlID:function(_85){
this._serverTargetControlID=_85;
},get_Position:function(){
return this._position;
},set_Position:function(_86){
if(this._position!=_86){
this._position=_86;
}
this._horizontalPosition=this._getHorizontalSide(this._position);
this._verticalPosition=this._getVerticalSide(this._position);
},get_OffsetX:function(){
return this._offsetX;
},set_OffsetX:function(_87){
if(this._offsetX!=_87){
this._offsetX=_87;
}
},get_OffsetY:function(){
return this._offsetY;
},set_OffsetY:function(_88){
if(this._offsetY!=_88){
this._offsetY=_88;
}
},get_Title:function(){
return this._title;
},set_Title:function(_89){
if(this._title!=_89){
this._title=_89;
}
this._refreshTitle();
},get_Text:function(){
return this._text;
},set_Text:function(_8a){
if(this._text!=_8a){
this._text=_8a;
}
},get_Width:function(){
return this._width;
},set_Width:function(_8b){
if(this._width!=_8b){
this._width=_8b;
}
},get_Height:function(){
return this._height;
},set_Height:function(_8c){
if(this._height!=_8c){
this._height=_8c;
}
},get_RelativeTo:function(){
return this._relativeTo;
},set_RelativeTo:function(_8d){
if(this._relativeTo!=_8d){
this._relativeTo=_8d;
}
},get_ContentScrolling:function(){
return this._contentScrolling;
},set_ContentScrolling:function(_8e){
if(this._contentScrolling!=_8e){
this._contentScrolling=_8e;
}
},get_Sticky:function(){
return this._sticky;
},set_Sticky:function(_8f){
if(this._sticky!=_8f){
this._sticky=_8f;
}
},get_ManualClose:function(){
return this._manualClose;
},set_ManualClose:function(_90){
if(this._manualClose!=_90){
this._manualClose=_90;
}
},get_ShowCallout:function(){
return this._showCallout;
},set_ShowCallout:function(_91){
if(this._showCallout!=_91){
this._showCallout=_91;
}
},get_ShowDelay:function(){
return this._showDelay;
},set_ShowDelay:function(_92){
if(this._showDelay!=_92){
this._showDelay=_92;
}
},get_AutoCloseDelay:function(){
return this._autoCloseDelay;
},set_AutoCloseDelay:function(_93){
if(this._autoCloseDelay!=_93){
this._autoCloseDelay=_93;
}
},get_HideDelay:function(){
return this._hideDelay;
},set_HideDelay:function(_94){
if(this._hideDelay!=_94){
this._hideDelay=_94;
}
},get_MouseTrailing:function(){
return this._mouseTrailing;
},set_MouseTrailing:function(_95){
if(this._mouseTrailing!=_95){
this._mouseTrailing=_95;
if(true==_95){
this.set_RelativeTo(Telerik.Web.UI.ToolTipRelativeDisplay.Mouse);
}
}
},get_Animation:function(){
return this._animation;
},set_Animation:function(_96){
if(this._animation!=_96){
this._animation=_96;
}
},get_ShowEvent:function(){
return this._showEvent;
},set_ShowEvent:function(_97){
if(this._showEvent!=_97){
this._showEvent=_97;
}
},get_Skin:function(){
return this._skin;
},set_Skin:function(_98){
if(_98&&this._skin!=_98){
this._skin=_98;
}
},add_BeforeShow:function(_99){
this.get_events().addHandler("BeforeShow",_99);
},remove_BeforeShow:function(_9a){
this.get_events().removeHandler("BeforeShow",_9a);
},add_Show:function(_9b){
this.get_events().addHandler("Show",_9b);
},remove_Show:function(_9c){
this.get_events().removeHandler("Show",_9c);
},add_BeforeHide:function(_9d){
this.get_events().addHandler("BeforeHide",_9d);
},remove_BeforeHide:function(_9e){
this.get_events().removeHandler("BeforeHide",_9e);
},add_Hide:function(_9f){
this.get_events().addHandler("Hide",_9f);
},remove_Hide:function(_a0){
this.get_events().removeHandler("Hide",_a0);
},saveClientState:function(){
var _a1=["Text","Position"];
var _a2={};
for(var i=0;i<_a1.length;i++){
_a2[_a1[i]]=this["get_"+_a1[i]]();
}
return Sys.Serialization.JavaScriptSerializer.serialize(_a2);
}};
Telerik.Web.UI.RadToolTip.registerClass("Telerik.Web.UI.RadToolTip",Telerik.Web.UI.RadWebControl);
Telerik.Web.UI.ToolTipPosition=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipPosition.prototype={TopLeft:11,TopCenter:12,TopRight:13,MiddleLeft:21,Center:22,MiddleRight:23,BottomLeft:31,BottomCenter:32,BottomRight:33};
Telerik.Web.UI.ToolTipPosition.registerEnum("Telerik.Web.UI.ToolTipPosition",false);
Telerik.Web.UI.ToolTipRelativeDisplay=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipRelativeDisplay.prototype={Mouse:0,Element:1};
Telerik.Web.UI.ToolTipRelativeDisplay.registerEnum("Telerik.Web.UI.ToolTipRelativeDisplay",false);
Telerik.Web.UI.ToolTipScrolling=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipScrolling.prototype={Auto:0,None:1,X:2,Y:3,Both:4};
Telerik.Web.UI.ToolTipScrolling.registerEnum("Telerik.Web.UI.ToolTipScrolling",false);
Telerik.Web.UI.ToolTipAnimation=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipAnimation.prototype={None:0,Resize:1,Fade:2,Slide:4,FlyIn:8};
Telerik.Web.UI.ToolTipAnimation.registerEnum("Telerik.Web.UI.ToolTipAnimation",false);
Telerik.Web.UI.ToolTipShowEvent=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipShowEvent.prototype={OnMouseOver:1,OnClick:2,OnRightClick:4,OnFocus:8};
Telerik.Web.UI.ToolTipShowEvent.registerEnum("Telerik.Web.UI.ToolTipShowEvent",false);


if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();