|
From: Dion A. <di...@al...> - 2004-11-10 02:32:17
|
Hi guys -
I run into the following use case a lot:
- Create a new FOO
- On success I want to SHOW that FOO
Ideally I would want to:
<property
name="successView"><value>viewFoo.html?id=$request['id']</value></property>
viewFoo.html?id=$request['id]
Could of course be something else like: id=$id or
$request.getParameter("id") or whatever.
But it would be really nice to be able to do something like this instead of
having my controller do a
.... getSuccessView() + "id=" + theId ....
If there another clean way to do this that I am missing?
Cheers,
Dion
|