 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);}}
ASPxClientDropDownEdit.prototype.ShowDropDown=function(){this.ShowDropDownArea(false);}
ASPxClientDropDownEdit.prototype.HideDropDown=function(){this.HideDropDownArea(false);}
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){var index=this.GetListBoxControl().AddItem(text,value,imageUrl);this.CollectionChanged();return index;}
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.ClearItemsInternal();}
ASPxClientComboBox.prototype.BeginUpdate=function(){this.GetListBoxControl().BeginUpdate();}
ASPxClientComboBox.prototype.EndUpdate=function(){this.GetListBoxControl().EndUpdate();this.CollectionChanged();}
ASPxClientComboBox.prototype.MakeItemVisible=function(index){var lb=this.GetListBoxControl();lb.MakeItemVisible(index);}
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(){return this.lastSuccessText;}
ASPxClientComboBox.prototype.PerformCallback=function(arg){this.isPerformCallback=true;this.ClearItemsInternal();this.GetListBoxControl().PerformCallback(arg);}
ASPxClientComboBox.prototype.ClearItemsInternal=function(){this.SetValue(null);this.CollectionChanged();var lbScrollDiv=this.GetListBoxScrollDivElement();if(_aspxIsExists(lbScrollDiv))lbScrollDiv.scrollTop="0px";}
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;}