 ASPxClientDropDownEdit.prototype.RaiseCloseUp=function(){if(!this.CloseUp.IsEmpty()){var args=new ASPxClientEventArgs();this.CloseUp.FireEvent(this,args);}}
ASPxClientDropDownEdit.prototype.RaiseDropDown=function(){if(!this.DropDown.IsEmpty()){var args=new ASPxClientEventArgs();this.DropDown.FireEvent(this,args);}}
ASPxClientComboBox.prototype.RaiseSelectedIndexChanged=function(){var processOnServer=this.autoPostBack;if(!this.SelectedIndexChanged.IsEmpty()){var args=new ASPxClientProcessingModeEventArgs(processOnServer);this.SelectedIndexChanged.FireEvent(this,args);processOnServer=args.processOnServer;}return processOnServer;}
ASPxClientComboBox.prototype.AddItem=function(text,value,imageUrl){this.GetListBoxControl().AddItem(text,value,imageUrl);this.CollectionChanged();}
ASPxClientComboBox.prototype.InsertItem=function(index,text,value,imageUrl){this.GetListBoxControl().InsertItem(index,text,value,imageUrl);this.CollectionChanged();}
ASPxClientComboBox.prototype.RemoveItem=function(index){this.GetListBoxControl().RemoveItem(index);this.CollectionChanged();}
ASPxClientComboBox.prototype.ClearItems=function(){this.GetListBoxControl().ClearItems();this.SetValue(null);this.CollectionChanged();}
ASPxClientComboBox.prototype.BeginUpdate=function(){this.GetListBoxControl().BeginUpdate()}
ASPxClientComboBox.prototype.EndUpdate=function(){this.GetListBoxControl().EndUpdate();this.CollectionChanged();}
ASPxClientComboBox.prototype.GetItem=function(index){return this.GetListBoxControl().GetItem(index);}
ASPxClientComboBox.prototype.GetItemCount=function(){return this.GetListBoxControl().GetItemCount();}
ASPxClientComboBox.prototype.GetSelectedIndex=function(){return this.GetListBoxControl().GetSelectedIndexInternal();}
ASPxClientComboBox.prototype.SetSelectedIndex=function(index){this.SelectIndex(index);}
ASPxClientComboBox.prototype.GetSelectedItem=function(){var lb=this.GetListBoxControl();var index=lb.GetSelectedIndexInternal();return lb.GetItem(index);}
ASPxClientComboBox.prototype.SetSelectedItem=function(item){var index=(item!=null)?item.index:-1;this.SelectIndex(index);}
ASPxClientComboBox.prototype.GetText=function(){var lb=this.GetListBoxControl();var item=lb.GetSelectedItem();var inputValue=ASPxClientDropDownEdit.prototype.GetValue.call(this);var inputText=inputValue==null?"":inputValue;return _aspxIsExists(item)?item.text:inputText;}
ASPxClientComboBox.prototype.CollectionChanged=function(){if(this.GetListBoxControl().APILockCount==0)this.InitDropDownSize();}
ASPxClientComboBox.prototype.FindItemIndexByText=function(lb,text){if(!_aspxIsExists(lb))return;for(var i=0;i<lb.GetItemCount();i++){if(lb.GetItem(i).text==text)return i;}return-1;}
ASPxClientDateEdit.prototype.SetDate=function(date){this.SetValue(date);}
ASPxClientDateEdit.prototype.GetDate=function(){return this.date;}
ASPxClientDateEdit.prototype.RaiseDateChanged=function(){var processOnServer=this.autoPostBack;if(!this.DateChanged.IsEmpty()){var args=new ASPxClientProcessingModeEventArgs(processOnServer);this.DateChanged.FireEvent(this,args);processOnServer=args.processOnServer;}return processOnServer;}