// Gaia Ajax Widgets Copyright (C) 2007 - 2008 Gaiaware AS. details at http://ajaxwidgets.com/
Gaia.DropDownList=Class.create();Object.extend(Gaia.DropDownList.prototype,Gaia.WebControl.prototype);Object.extend(Gaia.DropDownList.prototype,Gaia.ListControl.prototype);Object.extend(Gaia.DropDownList.prototype,{initialize:function(element,options){this.initializeDropDownList(element,options);},initializeDropDownList:function(element,options){this.initializeWebControl(element,options);},setTabIndex:function(value){this.element.tabIndex=value;return this;},_getElementPostValue:function(){return'&'+this.getCallbackName()+'='+$F(this.element.id);},_getElementPostValueEvent:function(){return'&'+this.getCallbackName()+'='+$F(this.element.id)+'&__EVENTTARGET='+this.getCallbackName();}});Gaia.DropDownList.browserFinishedLoading=true;