The implementation of setValue in HTMLSelectElementImpl looks like:
public void setValue( String value )
{
setAttribute( "value", value );
}but value is not an attribute of HTMLSelectElement but it is the value of the OptionElement that is selected. Any idea why it is implementaed this way? st. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
