- This topic has 16 replies, 13 voices, and was last updated 20 years, 8 months ago by Ronald van Kuijk.
-
AuthorPosts
-
Ronald van KuijkMemberI use tiles a lot, and if you use a tiles-defs.xml file, you only see the forward to the definition. It would be great to have the outline show which jsp are contained in that definition. At least only the ones that are not inhearited from e.g. a default layout definition. Editing them, or a wizzard is the next step. A nice (exportable!?) image would be great
e.g. a definition in tiles-defs.xml like
<definition
name=”layout”
path=”/layout/layout.jsp”>
<put name=”title” value=”${title}”/>
<put name=”content” value=”${content}”/>
<put name=”banner” value=”/tiles/banner.jsp”/>
<put name=”header” value=”/tiles/header.jsp”/>
<put name=”footer” value=”/tiles/footer.jsp”/>
<put name=”menu” value=”/tiles/menu.jsp”/>
</definition>and an extended definition of
<definition name=”.messageerror” extends=”layout”>
<put name=”title” value=”Message Error page”/>
<put name=”content” value=”/messageerror.jsp”/>
</definition>in combination with an action of
<action
attribute=”sendmessageForm”
input=”sendmessage.jsp”
name=”sendmessageForm”
path=”/sendMessage”
validate=”false”
type=”net.vankuijk.messaging.ebxml.gui.action.SendMessageAction”>
<forward name=”messagesent” path=”.messagesent” />
<forward name=”messageerror” path=”.messageerror” />
</action>Should show an image like i created on http://ronald.vankuijk.net/myeclipse/struts.png
Riyad KallaMemberGood suggestion, anybody else want this?
palvimMemberIt’s very important for us too (all users from Powerlogic -Brazil)!
We think Tiles is one of the main reasons for using Struts – and we’ll still need it with JSF! We hope to have it in MyEclipse as soon as possible…
PaulParticipant@support-rkalla wrote:
Good suggestion, anybody else want this?
Yes – very much so. I think that many struts developers would consider Tiles an integral part. Thanks, and keep up the good work.
jfergusMember+1
Dan ScovillMemberThis would be a great feature.
Jeremy KuhnashMember+1 here, tiles is pretty high on the essential ‘view’ priority list, here anyway.
sabbadMember+1, tiles is a great framework
paulhhMember++1, Tiles is a key part of the framework
Richard Ellis ConwayMember+1 – Tiles is an important piece of the framework. Especially for maintenance and reusability.
Andrew FreemanMember+1
DamianMember++1 tiles is very important for us
Riyad KallaMemberGuys it looks like Tiles support is planned for 2.8 (May-ish time frame for GA, RC releases before that). Hopefully you can all give us feedback during the 2.8 RCs to help us really get you the support you need.
b0rgMember++1 and my colleagues too. This is a must!
Maybe this was the reason for my comment in https://www.genuitec.com/forums/topic/struts-config-xml-flow-view-does-not-display-forward-icon/, I wasn’t aware that tiles are ignored in the outline.
Riyad KallaMemberActually, Borg your comment in that thread got us talking about making flow view more generic and allowing linking to ‘resources’ instead of just ‘jsp pages’, so as I hear now, 2.7 will have a totally overhauled Flow View and 2.8 will include even better support.
-
AuthorPosts