
|
If you were logged in you would be able to see more operations.
|
|
|
|
If you change Stripes so that the '.action' suffix is not used, you get, without doing anything else, support for appending the name of the event at the end of the URL.
So /action/myaction/view would target 'view', if you're using /action as a mapping prefix and /myaction targets the action bean.
However, /action/myaction/view/somethingelse should still target 'view', and right now it will try to find an event named 'view/somethingelse' which of course does not work.
It's a simple fix.
|
|
Description
|
If you change Stripes so that the '.action' suffix is not used, you get, without doing anything else, support for appending the name of the event at the end of the URL.
So /action/myaction/view would target 'view', if you're using /action as a mapping prefix and /myaction targets the action bean.
However, /action/myaction/view/somethingelse should still target 'view', and right now it will try to find an event named 'view/somethingelse' which of course does not work.
It's a simple fix. |
Show » |
|