(function(a,c){Type.registerNamespace("Telerik.Web.UI"); var b=Telerik.Web.UI; b.RadTab=function(){b.RadTab.initializeBase(this); this._properties=new b.PropertyBag(this); }; b.RadTab.GetView=function(g,f){var e=g._renderMode,d=b.RadTab.Views; if(e==b.RenderMode.Classic){return new d.Classic(f); }else{return new d.Lite(f); }}; b.RadTab.prototype={_requiresScrolling:function(){return this.get_tabStrip()._tabContainerRequiresScrolling(this); },_createChildControls:function(){this._children=new b.RadTabCollection(this); b.RadTabStrip._createChildControls(this,this._children); },_tabsFromSameLevel:function(){var f=[]; Array.addRange(f,this.get_tabStrip()._children._array); while(f.length>0){var e=f.length; if(Array.indexOf(f,this)>-1){return f; }for(var d=0; d"; this.withView(function(){e.get_view()._renderContent(d); }); d[d.length]=""; },_renderInnerContent:function(d){this._renderImgElement(d); this._renderTextElement(d); },_renderImgElement:function(d){var e=this._determineImage(); if(e){d[d.length]=""; }},_renderTextElement:function(d){d[d.length]=""; d[d.length]=this.get_text(); d[d.length]=""; },_removeGhostTab:function(){var d=this._ghost; if(d){d.parentNode.removeChild(d); }this._ghost=null; delete this._ghost; },_getLinkCssClass:function(e){var f=this; var d; this.withView(function(){d=f.get_view()._getLinkCssClass(e); }); return d.join(" "); },_getElementCssClass:function(){var e=this; var d; this.withView(function(){d=e.get_view()._getElementCssClass(); }); return d.join(" "); },_determineStateCssClass:function(){var d=[]; if(this.get_cssClass()){d[d.length]=this.get_cssClass(); }if(this.get_selected()){d[d.length]="rtsSelected"; if(this.get_selectedCssClass()){d[d.length]=this.get_selectedCssClass(); }}if(!this.get_enabled()){d[d.length]="rtsDisabled"; if(this.get_disabledCssClass()){d[d.length]=this.get_disabledCssClass(); }}return d; },_render:function(d){if(this.get_isSeparator()){this._renderSeparator(d); }else{this._renderTab(d); }this._updateSiblings(); if(this.get_tabs().get_count()>0){this._renderChildren(); }},_updateSiblings:function(){var d=this; this.withView(function(){var e=d.get_view(); if(e._updateSiblings!==c){e._updateSiblings(); }}); },_renderChildren:function(){var d=this._createChildListElement(); var e=[]; this.get_tabs().forEach(function(f){f._render(e); }); d.innerHTML=e.join(""); },_cacheDomProperties:function(){this.get_text(); this.get_navigateUrl(); },_cleanElements:function(){this._cacheDomProperties(); b.RadTabStrip._disposeScroller(this); var e=this.get_parent(),d=e.get_childListElement(); this.get_tabs().forEach(function(f){f._cacheDomProperties(); f._cleanElements(); }); d.removeChild(this.get_element()); this._element=null; this._linkElement=null; this._outerWrapElement=null; this._innerWrapElement=null; this._imageElement=null; this._textElement=null; if($telerik.getChildrenByTagName(d,"li")<1){e._destroyChildListElement(); }},_getLevelIndex:function(){if(this.get_tabStrip()._ascendingRendering()){return this.get_level()+1; }return this.get_tabStrip()._getLevelElements().length-this.get_level()-2; },_updateAppearance:function(){if(!this.get_element()){return; }if(this.get_linkElement()){this._setCssClass(this.get_linkElement(),this._getLinkCssClass()); }this._updateImage(); this._setCssClass(this.get_element(),this._getElementCssClass()); },_determineImage:function(){var d=this.get_imageUrl(); if(this.get_selected()&&this.get_selectedImageUrl()){d=this.get_selectedImageUrl(); }if(!this.get_enabled()&&this.get_disabledImageUrl()){d=this.get_disabledImageUrl(); }return d; },_updateImage:function(){if(!this.get_element()){return; }var e=this._determineImage(); var d=this.get_imageElement(); if(e){if(!d){d=document.createElement("img"); d.className="rtsImg"; d.alt=""; this.get_innerWrapElement().insertBefore(d,this.get_textElement()); }if(this.get_imageElement().src!=e){this.get_imageElement().src=e; }return; }if(d){a(d).remove(); this._imageElement=null; }},_setChildListDisplay:function(f){var g=this.get_tabStrip(); var e=this; while(e){var d=e.get_childListElement(); if(d){d.style.display=f; if(f!="none"&&g._align==b.TabStripAlign.Justify){b.RadTabStrip._justify(d,g._orientation); }}e=e.get_selectedTab(); }},_setHighlight:function(d){var e=this; this.withView(function(){e.get_view()._setHighlight(d); }); },_highlight:function(){if(!this.get_isEnabled()){return; }this._setHighlight(true); if(!this.get_hoveredImageUrl()||!this.get_imageElement()){return; }if(this.get_imageElement().src!=this.get_hoveredImageUrl()){this.get_imageElement().src=this.get_hoveredImageUrl(); }},_unhighlight:function(){this._setHighlight(false); this._updateImage(); },_shouldPostBack:function(){var d=this.get_tabStrip(); if(!d){return false; }return this.get_postBack()&&(d._autoPostBack||d._postBackOnClick); },_initialize:function(d,e){b.RadTab.callBaseMethod(this,"_initialize",[d,e]); this._perTabScrolling=this._properties.getValue("perTabScrolling",false); this._scrollChildren=this._properties.getValue("scrollChildren",false); this._scrollButtonsPosition=this._properties.getValue("scrollButtonsPosition",b.TabStripScrollButtonsPosition.Right); this._ensureChildControls(); },_dispose:function(){b.RadTab.callBaseMethod(this,"_dispose"); b.RadTabStrip._disposeScroller(this); },_initScrolling:function(){if(this.get_selected()&&this._requiresScrolling()){this.get_tabStrip()._initScrollingForTabContainer(this); }},_selectPageView:function(e){var d=this.get_pageView(); if(d){d._select(e); }if(this.get_selectedIndex()>-1){this.get_selectedTab()._selectPageView(e); }},_setVisible:function(d){b.RadTab.callBaseMethod(this,"set_visible",[d]); if(d){this.get_element().style.display=""; this._updateSiblings(); this._updateAppearance(); }else{this.get_element().style.display="none"; this.unselect(); this._updateSiblings(); }},_getGlobalIndex:function(){return Array.indexOf(this.get_tabStrip().get_allTabs(),this); },_setNavigateUrl:function(d){this._properties.setValue("navigateUrl",d,true); },get_view:function(){return this._view; },withView:function(d,e){if(!this.get_view()){if(this.get_tabStrip()){this._view=b.RadTab.GetView(this.get_tabStrip(),this); }else{if(e){return e(); }else{return; }}}return d(); },scrollIntoView:function(){var d=this; this.withView(function(){d.get_view().scrollIntoView(); }); },scrollIntoViewWhenNeeded:function(){var d=this; this.withView(function(){d.get_view().scrollIntoViewWhenNeeded(); }); },get_nextTab:function(){return this.get_nextSibling(); },get_previousTab:function(){return this.get_previousSibling(); },click:function(d){if(!this.get_isEnabled()){if(d&&d.preventDefault){d.preventDefault(); }return false; }var f=this.get_tabStrip(); if(!f){return false; }if(f.get_causesValidation()){if(typeof(Page_ClientValidate)!=="undefined"&&!Page_ClientValidate(f.get_validationGroup())){return false; }}if(!this.select(d)){return false; }if(this._shouldNavigate()){return true; }if(this._shouldPostBack()){f._postback({type:b.TabStripCommand.TabClick,index:this._getHierarchicalIndex()}); }return false; },get_pageView:function(){var e=this.get_tabStrip().get_multiPage(); if(!e){return null; }if(this.get_pageViewID()){return e.findPageViewByID(this.get_pageViewID()); }var d=this._properties.getValue("_implPageViewID",""); if(d){return e.findPageViewByID(d); }return e.get_pageViews().getPageView(this._getGlobalIndex()); },get_pageViewID:function(){return this._properties.getValue("pageViewID",null); },set_pageViewID:function(d){this._properties.setValue("pageViewID",d); },get_target:function(){if(this.get_linkElement()){return this._properties.getValue("target",this.get_linkElement().target); }return this._properties.getValue("target",null); },set_target:function(d){this._properties.setValue("target",d,true); if(this.get_linkElement()){this.get_linkElement().target=d; }},get_navigateUrl:function(){return this._getNavigateUrl(); },set_navigateUrl:function(e){var d=this; this._setNavigateUrl(e); this.withView(function(){d.get_view().set_navigateUrl(e); }); },get_postBack:function(){return this._properties.getValue("postback",true); },set_postBack:function(d){this._properties.setValue("postback",d,true); },get_selected:function(){if(!this.get_parent()){return false; }return this.get_index()==this.get_parent().get_selectedIndex(); },set_selected:function(d){if(d){this.select(); }else{this.unselect(); }},selectParents:function(){var f=[]; var d=this; while(d!=this.get_tabStrip()){f[f.length]=d; d=d.get_parent(); }var e=f.length; while(e--){f[e].select(); }},select:function(d){var k=this; var f=this.get_parent(); if(!f){this._cachedSelected=true; return true; }var h=this._shouldNavigate(),g=f.get_selectedTab(),j=this.get_tabStrip(); if(!h&&g==this&&!j.get_clickSelectedTab()){return false; }if(j._raiseCancelEvent("tabSelecting",this,d)){return false; }var i=this._shouldPostBack()||(h&&(!this.get_target()||this.get_target()=="_self")); if(!d){i=false; }if(g&&g!=this){g.unselect(i,d); }f._setSelectedIndex(this.get_index()); j._registerSelectedTab(this); if(j.get_enableAriaSupport()){b.RadTabStrip._toggleActiveDescendantAttributes(this,j.get_id(),true); }this.withView(function(){var e=k.get_view(); if(e.select){e.select(); }}); if(!i){this._updateAppearance(); this._updateSiblings(); this._setChildListDisplay(""); if(this._scroller){if(this._scroller._showArrows!=c){this._scroller._showArrows(); }}else{j._scrollInitInProgress=true; this._initScrolling(); j._scrollInitInProgress=false; }if(j._reorderTabsOnSelect){b.RadTabStrip._reorderTabs(f.get_childListElement(),this.get_element()); }}if(j.get_multiPage()){this._selectPageView(i); }j._raiseEvent("tabSelected",this,d); return true; },unselect:function(h,d){var j=this; var f=this.get_parent(); if(!f){return; }if(!this.get_selected()){return; }f._setSelectedIndex(-1); var i=this.get_tabStrip(); i._unregisterSelectedTab(this); if(i.get_enableAriaSupport()){b.RadTabStrip._toggleActiveDescendantAttributes(this,i.get_id(),false); }this.withView(function(){var e=j.get_view(); if(e.unselect){e.unselect(); }}); if(!h){this._setChildListDisplay("none"); if(this._scroller&&this._scroller._hideArrows!=c){this._scroller._hideArrows(); }this._updateAppearance(); this._updateSiblings(); }var g=this.get_selectedTab(); if(i.get_unselectChildren()&&g){g.unselect(h); }i._raiseEvent("tabUnSelected",this,d); },get_selectedIndex:function(){return this._properties.getValue("selectedIndex",-1); },_setSelectedIndex:function(d){this._properties.setValue("selectedIndex",d); },set_selectedIndex:function(f){if(f>-1){var e=this.get_tabs().getTab(f); if(e){e.select(); }}else{var d=this.get_selectedTab(); if(d){d.unselect(); }}},get_selectedTab:function(){return this.get_tabs().getTab(this.get_selectedIndex())||null; },get_tabStrip:function(){return this._getControl(); },get_isSeparator:function(){return this._properties.getValue("isSeparator",false); },set_isSeparator:function(d){this._properties.setValue("isSeparator",d); },get_tabData:function(){return this.get_itemData(); },get_levelElement:function(){if(!this._levelElement){this._levelElement=this._getControl()._getLevelElements()[this._getLevelIndex()]||null; }return this._levelElement; },get_textElement:function(){if(this.get_isSeparator()){return this.get_element(); }if(!this.get_innerWrapElement()){return null; }if(!this._textElement){this._textElement=$telerik.getChildByClassName(this.get_innerWrapElement(),"rtsTxt"); }return this._textElement; },get_linkElement:function(){if(!this.get_element()){return null; }if(!this._linkElement){this._linkElement=$telerik.getChildByClassName(this.get_element(),"rtsLink"); }return this._linkElement; },get_imageElement:function(){if(!this.get_innerWrapElement()){return null; }if(!this._imageElement){this._imageElement=$telerik.getChildByClassName(this.get_innerWrapElement(),"rtsImg"); }return this._imageElement; },get_outerWrapElement:function(){var d=this; if(!this.get_linkElement()){return null; }if(!this._outerWrapElement){this._outerWrapElement=this.withView(function(){return d.get_view().get_outerWrapElement(); }); }return this._outerWrapElement; },get_innerWrapElement:function(){var d=this; if(!this.get_outerWrapElement()){return null; }if(!this._innerWrapElement){this._innerWrapElement=this.withView(function(){return d.get_view().get_innerWrapElement(); }); }return this._innerWrapElement; },get_childListElement:function(){if(!this._childListElement){var d=this._getListItemsForTheCurrentLevel(); if(!d){return null; }this._childListElement=d[this._getChildListIndex()]||null; }return this._childListElement; },get_tabs:function(){return this._getChildren(); },enable:function(){this.set_enabled(true); },disable:function(){this.set_enabled(false); },set_visible:function(d){this._setVisible(d); },show:function(){this._setVisible(true); },hide:function(){this._setVisible(false); },set_enabled:function(h){if(this.get_enabled()==h){return; }b.RadTab.callBaseMethod(this,"set_enabled",[h]); var g=this.get_tabStrip(); if(g&&g.get_enableAriaSupport()){a(this.get_element()).attr("aria-disabled",!this.get_enabled()); }this._updateAppearance(); if($telerik.isIE8&&this.get_linkElement()){this.get_linkElement().disabled=!h; }if(this._scroller){this._scroller._toggleEnabled(); }var f=this.get_tabs(); for(var d=0,e=f.get_count(); d-1){l=m[n]; break; }}if(!l||l==o){return; }for(n=0; n0){m.style.marginTop=o+"px"; q._aligned=true; }}; c.RadTabStrip._createChildControls=function(p,r){var m=p.get_tabData(); if(!m){return; }var l=$telerik.getChildrenByClassName(p.get_childListElement(),"rtsLI"); for(var o=0; o"; d.appendChild(m); m.style.top="-999em"; m.style.left="-999em"; m.style.display="block"; n._ghost=m; o._initializeDropClues(); a(n.get_parent()._childListElement).off(h,".rtsLI",o._ensureTabGhost); },_initializeDropClues:function(){var q=this,o=q._isVertical,m=q._dropClueFirst=f.createElement("SPAN"),n=q._dropClueSecond=f.createElement("SPAN"),p=q._skin; function l(r){return String.format("{0} {0}_{1} {0}{2} {0}{2}_{1}","rtsDropClue",p,r); }m.className=l((o?"Left":"Top")); n.className=l((o?"Right":"Bottom")); d.appendChild(m); d.appendChild(n); },_positionDropClues:function(s,l){var t=this,q=t._dropPosition,r=t._isVertical,m=t._dropClueFirst,n=m[j],o=t._dropClueSecond,p=o[j]; switch(q){case c.TabStripDropPosition.Before:if(r){n.top=l.y+"px"; n.left=l.x+"px"; p.top=l.y+"px"; p.left=l.x+a(s).outerWidth()+"px"; }else{n.top=l.y+"px"; n.left=l.x+"px"; p.top=l.y+s.offsetHeight+"px"; p.left=l.x+"px"; }n.display="block"; p.display="block"; break; case c.TabStripDropPosition.After:if(r){n.top=l.y+a(s).outerHeight()+"px"; n.left=l.x+"px"; p.top=l.y+s.offsetHeight+"px"; p.left=l.x+a(s).outerWidth()+"px"; }else{n.top=l.y+"px"; n.left=l.x+a(s).outerWidth()+"px"; p.top=l.y+s.offsetHeight+"px"; p.left=l.x+a(s).outerWidth()+"px"; }n.display="block"; p.display="block"; break; }},_hideDropClues:function(){if(this._dropClueFirst){this._dropClueFirst.style.display="none"; }if(this._dropClueSecond){this._dropClueSecond.style.display="none"; }},_getScrollableSize:function(l){if(this._isVertical){return this._getTabsSize(l,"offsetHeight")-l.get_levelElement().offsetHeight; }return this._getTabsSize(l,"offsetWidth")-l.get_levelElement().offsetWidth; },_getTabsSize:function(o,p){var l=c.RadTabStrip._getTabGroups(o.get_childListElement(),p); var n=0; for(var m=0; ml){m=n-l; }else{m=l-n; }return m; },_createLevelElement:function(l){var o=this; var n=document.createElement("div"); var m=["rtsLevel","rtsLevel"+l]; this.withView(function(){var p=o.get_view(); if(p._getLevelClasses!==k){m=m.concat(o.get_view()._getLevelClasses()); }}); n.className=m.join(" "); if(this._ascendingRendering()){Array.add(this._listElementsPerLevel,[]); Array.add(this._levelElements,n); this._element.appendChild(n); }else{Array.insert(this._listElementsPerLevel,0,[]); Array.insert(this._levelElements,0,n); this._element.insertBefore(n,this._element.firstChild); }return n; },_createChildListElement:function(){var l=document.createElement("ul"); l.className="rtsUL"; var m=this._createLevelElement(1); m.appendChild(l); Array.add(this._listElementsPerLevel[this._getLevelIndex()],l); return l; },_initLevelElements:function(){this._listElementsPerLevel=[]; var m=this._getLevelElements(); for(var l=0; lu){r--; }if(r===u){return; }}else{if(u>r){r++; }}t=this._calculateOffset(u,r); if(this._raiseReordering(m,p,r,t)){return; }this._detachDragToReordeHandler(); var v=m.get_parent(),w=v.get_selectedTab(),x=this.get_tabs(); this._selectedIndexes=[]; m._setNavigateUrl(m._getNavigateUrl()); n.insert(r,m); if(w){Array.add(this._selectedIndexes,w._getHierarchicalIndex()); w._updateSiblings(); }for(var q=0; q0){z(y._current.get_selectedTab()||A.getTab(0)); }}; var r=function(A){var B; switch(A){case l.up:v(); break; case l.down:s(); break; case l.left:B=y._rightToLeft?"get_nextTab":"get_previousTab"; z(y._current[B]()); break; case l.right:B=y._rightToLeft?"get_previousTab":"get_nextTab"; z(y._current[B]()); break; }}; var w=function(A){switch(A){case l.up:z(y._current.get_previousTab()); break; case l.down:z(y._current.get_nextTab()); break; case l.left:if(y._rightToLeft){s(); }else{v(); }break; case l.right:if(y._rightToLeft){v(); }else{s(); }break; }}; var t=function(){var A=y._current.get_parent().get_tabs().getTab(0); z(A); }; var u=function(){var B=y._current.get_parent().get_tabs(); var A=B.getTab(B.get_count()-1); z(A); }; var n=function(){var B=y._current.get_pageView(); var A=B&&a(B.get_element()).find("a, button, :input, [tabindex]"); if(B&&B.get_selected()&&A.length){A.eq(0).focus(); m.preventDefault(); }}; var x=function(){if(y._current.click()){y._current.get_linkElement().click(); }z(y._current); }; switch(p){case o.left:q(l.left); m.preventDefault(); break; case o.right:q(l.right); m.preventDefault(); break; case o.down:q(l.down); m.preventDefault(); break; case o.up:q(l.up); m.preventDefault(); break; case o.home:t(); m.preventDefault(); break; case o.end:u(); m.preventDefault(); break; case o.enter:x(); break; case o.space:x(); m.preventDefault(); break; case o.tab:n(); break; }},initialize:function(){var l=this; if(this._shouldReorder){c.RadTabStrip._reorder(this.get_id(),this._selectedIndex); }this._initLevelElements(); this._initializeKeyboardNavigation(); c.RadTabStrip.callBaseMethod(this,"initialize"); c.RadTabStrip._align(this.get_id(),this._align,this._orientation); this._updateSelectedState(); a(this._element).on("click",".rtsLI",function(m){l._click(m); }).on("dblclick",".rtsLI",function(m){l._doubleClick(m); }).on("mousedown",".rtsLI",function(m){l._mouseDown(m); }).on("mouseover",".rtsLI",function(m){l._mouseOver(m); }).on("mouseout",".rtsLI",function(m){l._mouseOut(m); }).on("contextmenu",".rtsLI",function(m){l._contextMenu(m); }).on("focus",".rtsLink",function(m){l._focus(m); }).on("blur",".rtsLink",function(m){l._blur(m); }); if($telerik.isIE&&a.isEmptyObject(this._navigationSettings)){$telerik.addHandler(this._element,"activate",a.proxy(this._activate,this)); }this._resizeDelegate=Function.createDelegate(this,this._resize); $telerik.addHandler(window,"resize",this._resizeDelegate); this._isUsedOnTouchDevices=$telerik.isTouchDevice; if(this._enableDragToReorder){this._attachDragToReorderHandler(); }if($telerik.isRightToLeft(this._element)){this._applyRtl(); }this._isVertical=this._orientation===c.TabStripOrientation.VerticalRight||this._orientation===c.TabStripOrientation.VerticalLeft; this._initScrolling(); if(this.get_enableAriaSupport()){this._applyWaiAria(); }this.raiseEvent("load"); },get_rippleZonesConfiguration:function(){return[{element:this.get_element(),rippleConfigurations:[{containerSelector:".rtsLink, .rtsNextArrow , .rtsPrevArrow",disabledClass:"rtsDisabled"}]}]; },get_view:function(){return this._view; },withView:function(l){if(!this.get_view()){this._view=c.RadTabStrip.GetView(this); }return l(); },repaint:function(){if(!this._scrollInitInProgress){this._initScrolling(); }this._element._aligned=null; c.RadTabStrip._align(this.get_id(),this._align,this._orientation); },dispose:function(){if($telerik.isIE&&a.isEmptyObject(this._navigationSettings)){$telerik.removeHandler(this._element,"activate",this._activate); }a(this._element).off(); a(document.body).off("keydown",this._keyboardNavigationHandler); c.RadTabStrip.callBaseMethod(this,"dispose"); this._detachDragToReordeHandler(); $telerik.removeHandler(window,"resize",this._resizeDelegate); c.RadTabStrip._disposeScroller(this,true); },commitChanges:function(){this._logEntriesJson=this._log.serialize(); c.RadTabStrip.callBaseMethod(this,"commitChanges"); },enable:function(){this.set_enabled(true); },disable:function(){this.set_enabled(false); },set_enabled:function(p){if(this.get_enabled()==p){return; }c.RadTabStrip.callBaseMethod(this,"set_enabled",[p]); if(!this.get_isInitialized()){return; }if(!$telerik.isIE7){this._element.disabled=!p; }if(this._scroller){this._scroller._toggleEnabled(); }if(this.get_enableAriaSupport()){c.RadTabStrip._toggleAttribute(this.get_element(),"aria-disabled",!p,true); }var o=this.get_tabs(),l=this.get_view()._getDisabledClass(); for(var m=0,n=o.get_count(); m-1){var m=this.get_tabs().getTab(n); if(m){m.select(); }}else{var l=this.get_selectedTab(); if(l){l.unselect(); }}},get_levelElement:function(){if(!this._levelElement){this._levelElement=this._getLevelElements()[this._getLevelIndex()]||null; }return this._levelElement; },get_childListElement:function(){if(!this.get_levelElement()){return null; }if(!this._childListElement){this._childListElement=$telerik.getChildByClassName(this.get_levelElement(),"rtsUL"); }return this._childListElement; },get_tabData:function(){return this._tabData; },set_tabData:function(l){this._tabData=l; },get_tabs:function(){return this._getChildren(); },get_clickSelectedTab:function(){return this._clickSelectedTab===true; },set_clickSelectedTab:function(l){this._clickSelectedTab=l; },findTabByText:function(l){return this._findItemByText(l); },findTabByValue:function(l){return this._findItemByValue(l); },findTabByAttribute:function(l,m){return this._findItemByAttribute(l,m); },findTabByUrl:function(l){return this._findItemByUrl(l); },findTabByAbsoluteUrl:function(l){return this._findItemByAbsoluteUrl(l); },get_allTabs:function(){if(!this._allTabs){this._allTabs=this._getAllItems(); }return this._allTabs; },get_multiPage:function(){if(!this.get_multiPageID()){return null; }return $find(this.get_multiPageID()); },set_multiPageID:function(l){this._multiPageID=l; },get_multiPageID:function(){return this._multiPageID; },get_enableAriaSupport:function(){return this._enableAriaSupport; },set_enableAriaSupport:function(l){this._enableAriaSupport=l; },add_tabDragStart:function(l){this.get_events().addHandler("tabDragStart",l); },remove_tabDragStart:function(l){this.get_events().removeHandler("tabDragStart",l); },add_reordered:function(l){this.get_events().addHandler("reordered",l); },remove_reordered:function(l){this.get_events().removeHandler("reordered",l); },add_reordering:function(l){this.get_events().addHandler("reordering",l); },remove_reordering:function(l){this.get_events().removeHandler("reordering",l); },add_tabSelecting:function(l){this.get_events().addHandler("tabSelecting",l); },remove_tabSelecting:function(l){this.get_events().removeHandler("tabSelecting",l); },add_tabSelected:function(l){this.get_events().addHandler("tabSelected",l); },remove_tabSelected:function(l){this.get_events().removeHandler("tabSelected",l); },add_tabUnSelected:function(l){this.get_events().addHandler("tabUnSelected",l); },remove_tabUnSelected:function(l){this.get_events().removeHandler("tabUnSelected",l); },add_load:function(l){this.get_events().addHandler("load",l); },remove_load:function(l){this.get_events().removeHandler("load",l); },add_mouseOver:function(l){this.get_events().addHandler("mouseOver",l); },remove_mouseOver:function(l){this.get_events().removeHandler("mouseOver",l); },add_mouseOut:function(l){this.get_events().addHandler("mouseOut",l); },remove_mouseOut:function(l){this.get_events().removeHandler("mouseOut",l); },add_contextMenu:function(l){this.get_events().addHandler("contextMenu",l); },remove_contextMenu:function(l){this.get_events().removeHandler("contextMenu",l); },add_doubleClick:function(l){this.get_events().addHandler("doubleClick",l); },remove_doubleClick:function(l){this.get_events().removeHandler("doubleClick",l); }}; c.RadTabStrip.registerClass("Telerik.Web.UI.RadTabStrip",c.ControlItemContainer); })($telerik.$);