/*
DynAPI Distribution
HTMLDropDownMenu Class
The DynAPI Distribution is distributed under the terms of the GNU LGPL license.
Requires: HTMLListbox
*/
function HTMLDropDownMenu(css,items,title,elmName){
this.HTMLListbox = HTMLListbox;
this.HTMLListbox(css,items,null,false,title);
this._elmId = elmName||(this.id+'DDM');
this._defEvtResponse = true;
};
var p = dynapi.setPrototype('HTMLDropDownMenu','HTMLListbox');
// Methods
p.getInnerHTML = function(){
var evt;
evt = this._generateInlineEvents(this);
return '';
};