Reusing GUI and Actions

2009-04-22 Thread Richard Sayre
I have a form in my web application that can be accessd from different places (Namespaces) in the web app. It looks something like this /Admin/EditSchedule.action /MySchedules/NewSchedule.action /Create/NewSchedule.action /Create/EditSchedule.action The are subtle differences in how the data is

Re: Reusing GUI and Actions

2009-04-22 Thread mitch gorman
i've explicitly passed the name of the action to take into the page, in similar situations. my form has s:form ... action=%{actionname} or, i've used the session, so the form tag looks like form ... action=s:property value=#session.actionname / YMMV. -- Mitch Gorman