You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by Ralph Schaer <rs...@datacomm.ch> on 2000/06/16 21:42:31 UTC

textarea and select tag not working

Nightly Build 2000/06/16

Hi

Have you noticed that the textarea and select tag are not working any more.


The following error occurs when the jsp contains a <struts:textarea> tag:
javax.servlet.ServletException: Since tag handler 
class org.apache.struts.taglib.TextareaTag 
implements BodyTag, it can't return Tag.EVAL_BODY_INCLUDE

The select tag does not throw an exception, but does not show the
option tags.

the jsp code
<struts:select property="select">
  <struts:option value="1">Holland</struts:option>
  <struts:option value="2">Belgien</struts:option>
  <struts:option value="3">Deutschland</struts:option>
</struts:select>

results in the html code

<select name="select">
</select>


Ralph