Hi

I'm quite new to Tiles and I've got the following problem:

I've defined the following default definition:
<definition name=".mainLayout" path="/layout/classicLayout.jsp">
      <put name="title"  value="Berechtigung WEB with Tiles" />
      <put name="header" value="/top_menu.jsp" />
      <put name="menu"   value="/toc.jsp" />
      <put name="footer" value="/footer.jsp" />
      <put name="body"   value="/welcome.jsp" />
</definition>

The classicLayout.jsp hasn't been changed (Struts examples).

Additionally, I've defined the following Definition:
<definition name=".showOrgEinheit" extends=".mainLayout">
      <put name="input" value="/getOrgEinheit.jsp" />
      <put name="result" value="/showOrgEinheit.jsp" />
      <put name="body" value="/layout/bodyTwoColumns.jsp" />
</definition>

The bodyTwoColumns looks like this:
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>

<table border="0" width="100%" cellspacing="5">
<tr>
  <td width="50%" align="left">
    <tiles:insert attribute='input'/>
  </td>
  <td width="50%" align="left">
    <tiles:insert attribute='result' />
  </td>
</tr>
</table>

My struts action forwards to the definition .showOrgEinheit but I get the
following error:
[ServletException in:/layout/bodyTwoColumns.jsp] Error - Tag Insert : No
value found for attribute 'input'.'

Can anybody help me, please? Thank you a lot.

Cheers
Oliver






******************* BITTE BEACHTEN *******************
Diese Nachricht (wie auch allf�llige Anh�nge dazu) beinhaltet
m�glicherweise vertrauliche oder gesetzlich gesch�tzte Daten oder
Informationen. Zum Empfang derselben ist (sind) ausschliesslich die
genannte(n) Person(en) bestimmt. Falls Sie diese Nachricht
irrt�mlicherweise erreicht hat, sind Sie h�flich gebeten, diese unter
Ausschluss jeder Reproduktion zu zerst�ren und die absendende Person
umgehend zu benachrichtigen. Vielen Dank f�r Ihre Hilfe.


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

Reply via email to