DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20854>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20854 Error with nesting tags in separate pages [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Version|1.1RC2 |1.1 Final ------- Additional Comments From [EMAIL PROTECTED] 2003-08-15 23:12 ------- I'm experiencing this problem as well (in WebSphere Application Server 4.0.4). The first nested property inside any inserted tile works, but any successive nested properties fail because they no longer know who their parent is (in the same tile): I debugged both examples, and found the following: In the flat JSP: * The first nested:nest's doStart tag has: - originalNest: null - originalName: "sampleForm" * The second nested:nest's doStart tag has: - originalNest: null - originalName: "sampleForm" In the inserted tile: * The first nested:nest's doStart tag has: - originalNest: null - originalName: "sampleForm" * The second nested:nest's doStart tag has: - originalNest: null - originalName: "" Hope this helps. -------- flat.jsp -------- <%@ taglib uri="nested" prefix="nested" %> <html> <head> <title>Flat Form</title> </head> <body> <nested:form action="noop"> <nested:nest property="person"> Name: <nested:text property="name" /> </nested:nest> <hr> <nested:nest property="address"> Street: <nested:text property="street" /> </nested:nest> </nested:form> </body> </html> -------------- tiled_form.jsp -------------- <%@ taglib uri="nested" prefix="nested" %> <%@ taglib uri="tiles" prefix="tiles" %> <html> <head> <title>Tiled Form</title> </head> <body> <nested:form action="noop"> <tiles:insert name="nested_properties" /> </nested:form> </body> </html> --------------------- nested_properties.jsp --------------------- <%@ taglib uri="nested" prefix="nested" %> <nested:nest property="person"> Name: <nested:text property="name" /> </nested:nest> <hr> <nested:nest property="address"> Street: <nested:text property="street" /> </nested:nest> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
