Hey I pretty new to the whole tiles concept and have a problem. Will try to explain as good as I can.
In my tiles .xml file I have:
<definition name="/article/startDateAndPrioTeaserList.do" template="/article/startDateAndPrioTeaserList.do" />
Now I wan't to pass a parameter to the controller (an ID I only know in my jsp page). So I tought to do this:
<tiles:insertDefinition name=".component.article.startDateAndPrioTeaserList" template="/article/startDateAndPrioTeaserList.do?navigationItemId=1063" />
But this doesn't work... using putAttribute to pass the parameters is not an option because I can't edit the controller.
When I add the parameter in the tiles .xml file it works! Like this:
<definition name=".component.article.startDateAndPrioTeaserList" template="/article/startDateAndPrioTeaserList.do?navigationItemId=1063" />
I can also use c:import url=... but I have to pass several other elements to the jsp file that are not suported with c:import...
Anyone?