Tagged Questions

3
votes
1answer
437 views

Apache Tiles set html tag attribute using <put-attribute> value

I am using Apache Tiles 2.1 as my templating framework (along with Spring MVC). I want to know how best to be able to set HTML attribute values from within my Tiles definitions file. For example I ...
2
votes
1answer
2k views

Apache Tiles 2.1.4 with CSS

I am using Apache Tiles 2.1.4 with Spring MVC 3. I have managed to configure these together and everything works fine. My next step is to add CSS and this is where I am having an issue - this is most ...
1
vote
1answer
184 views

Apache Tiles If/Else

I am wondering if it's possible to have an if/else with Apache Tiles 2 (or JSTL that references a Tiles attribute, that would work to). Basically, I want this: <%@ taglib ...
1
vote
1answer
188 views

apache + tiles2 layout problem

I have the following tiles configuration file <tiles-definitions> <definition name="base" template="/includes/layout.jsp"> <put-attribute name="header" ...
1
vote
2answers
394 views

Nesting templates in Tiles, why are attributes undefined in the included template?

I use Tiles 2 in my web application, and the basic setup I've got in my tiles.xml file is this: <tiles-definitions> <definition name="mainLayout" template="/jsp/layout.jsp"> ...
1
vote
3answers
2k views

Nesting Apache Tiles Template

So I found this: http://tiles.apache.org/framework/tutorial/advanced/nesting-extending.html Here is the example: <definition name="myapp.homepage" template="/layouts/classic.jsp"> ...
0
votes
2answers
433 views

Tiles 2, mapping of JSP

I use Tiles 2 with Spring 3.05. I want to map jsp files to controller, e.g. <servlet-mapping> <servlet-name>dispatcher</servlet-name> ...
0
votes
1answer
580 views

Tiles 2.2.1 configuration

I have used Tiles 2.1, but in version 2.2 configuration has changed, but sadly their documentation seems to be very confusing*, at least for me. And their example project download link is not working. ...