Subject: Re: Multiple Selects
From: "Thomas B. Passin" <tpassin@xxxxxxxxxxxx>
Date: Mon, 11 Jun 2001 11:32:05 -0400
|
[Tanzila Mohammad]
> I am trying to include a multiple select tag in my xsl sheet:
>
> i.e.
> <SELECT NAME="Bathroom colors" SIZE="5" MULTIPLE>
> <OPTION>White
> <OPTION>Red
> <OPTION>Green
> <OPTION>Black
> </SELECT>
>
> The error I get when I include the 'MULTIPLE' is:
>
> - the attribute select must be followed by the '=' character.
>
> Any suggestions?
>
You must supply the value of an attribute in xml. Try
<SELECT NAME="Bathroom colors" SIZE="5" MULTIPLE='true'>
Tom P
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|