I have designed a basic layout file that looks something like this:
<html>
<head></head>
<body>
<div class="header"><tiles:insert attribute="header" /></div>
<div class="mainBody><tiles:insert attribute="mainBody" /></div>
</body>
</html>My problem is that I have a <html:form> element that needs to span both the "header" and "mainBody" attributes. But it doesn't really work as the tags
become unbalanced:
<tiles:insert definition="mainLayout">
<tiles:put name="header">
<html:form .. >
<html:select ... />
</tiles:put>
<tiles:put name="mainBody>
<html:text .. />
<html:text .. />
</html:form>
</tiles:put>
</tiles:insert>Has anyone else solved this problem?
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

