﻿Type.registerNamespace("Telerik.Web.UI");
Telerik.Web.UI.Orientation=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.Orientation.prototype={Vertical:1,Horizontal:2};
Telerik.Web.UI.Orientation.registerEnum("Telerik.Web.UI.Orientation",false);
Telerik.Web.UI.RadWebControl=function(_1){
Telerik.Web.UI.RadWebControl.initializeBase(this,[_1]);
this._clientStateFieldID=null;
};
Telerik.Web.UI.RadWebControl.prototype={initialize:function(){
Telerik.Web.UI.RadWebControl.callBaseMethod(this,"initialize");
},dispose:function(){
Telerik.Web.UI.RadWebControl.callBaseMethod(this,"dispose");
},raiseEvent:function(_2,_3){
var _4=this.get_events().getHandler(_2);
if(_4){
if(!_3){
_3=Sys.EventArgs.Empty;
}
_4(this,_3);
}
},updateClientState:function(){
this.set_ClientState(this.saveClientState());
},saveClientState:function(){
return null;
},get_ClientStateFieldID:function(){
return this._clientStateFieldID;
},set_ClientStateFieldID:function(_5){
if(this._clientStateFieldID!=_5){
this._clientStateFieldID=_5;
this.raisePropertyChanged("ClientStateFieldID");
}
},get_ClientState:function(){
if(this._clientStateFieldID){
var _6=document.getElementById(this._clientStateFieldID);
if(_6){
return _6.value;
}
}
return null;
},set_ClientState:function(_7){
if(this._clientStateFieldID){
var _8=document.getElementById(this._clientStateFieldID);
if(_8){
_8.value=_7;
}
}
}};
Telerik.Web.UI.RadWebControl.registerClass("Telerik.Web.UI.RadWebControl",Sys.UI.Control);


if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();