I've been struggling with a problem for two days and I am hoping somebody
here might have an idea.

I am using Struts 1.1 with tiles and have a long JSP with about 30 form
fields, some with option lists which are stored at the application level.

Everything is working fine, then I make one change. I go from:

<html:text property="resellerID" size="25" styleClass="form"/>

to

<logic:equal property="resellerID" value="0">
<html:text property="resellerID" size="25" styleClass="form"/>
</logic:equal>
<logic:notEqual property="resellerID" value="0">
<bean:write name="trialDownloadForm" property="resellerID"/>
</logic:notEqual>

Now all of a sudden I get this error in a totally unrelated area:

...
<option value="AZ">Azerbaijan</option>
<option value="BH">Bahrain</option>
<option value="BD">Bangladesh</option>
<option value="BI">Burundi</option>
<option value="BE">Belgium</option>
<[ServletException in:/tiles/trial_download_body.jsp] No selector attribute
(cookie/header/name/parameter) was specified'
...

Note how the options list is cut off right in the middle. 

Is this a Jasper problem? How can I fix it?

Wiebe



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to