Repopulate List in Form on validation failure

2009-08-13 Thread David Miller
Struts 1.3.10 Is it possible to repopulate a List of Objects on an ActionForm upon validation failure? If so, how? Here's a simple example of what I'm trying: *JSP:* *Form:* String year; List yearList = new ArrayList(); public String getYear() { return year; } public void setYear(S

Struts 1.3.9 & tags-html-el

2009-05-29 Thread David Miller
Greetings, An application that runs just fine in Glassfish 2.1 sort-of craps out when deployed on Weblogic 10.3. Specifically, an exception is thrown upon accessing a page that uses html:checkbox with an EL expression for the 'disabled' attribute: 11:04:29 ERROR 926:org.apache.struts.tiles.tag

Struts and Tiles

2007-05-15 Thread David Miller
Greetings, I'm using tiles for the first time and am a little confused about what I should be able to do. I'd like to be able to insert *portions* of another page using tiles. For example, in the middle of a gigantic jsp I want to insert a small chunk of code that exists in a different jsp - a

Nested tags confusion

2007-02-21 Thread David Miller
Greetings. I'm having extreme difficulty getting my application to work with nested tags. My form is very simple: it consists of a string and a DTO Object. The DTO Object in turn contains a List that holds another DTO Object: Form -> Bean -> List. Currently I can display data with no trouble but