Tagged Questions
3
votes
1answer
893 views
Propagating a Tiles attribute down the include chain
I'm using Tiles and I'd like an attribute defined for a page to be readable inside of one of the included subpages as follows:
tiles-definitions.xml:
<definition name="page" ...
3
votes
2answers
2k views
struts 2, tiles 2 dynamic title
I am using tiles 2.0.6 as my template framework together with struts 2.1.6. I am writing a simple cms page and want to let the user to define the title of each html page.
I have a title definition ...
2
votes
1answer
96 views
Design pattern for consistent UI
I have a Java based web app, which is going to be redesigned (i.e. mainly UI) from scratch.
Now here are the requirements:
The major changes are going to be in the UI layer (where it has to
work on ...
1
vote
1answer
220 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
199 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
692 views
Troubles with apache tiles 2 and JSP
I'm trying to get tiles 2 working with JSP. I'm getting a null pointer exception. I'm having trouble finding good documentation that explains how to get setup. I have a pretty easy use case. I have a ...
1
vote
2answers
428 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
28 views
PHP-like output buffering in JSP (letting subtemplates influence the master template)
In my website I have a master JSP template:
<html>
<body>
<nav>...</nav>
<tiles:insertAttribute name="body" />
<footer>...</footer>
</body>
...
0
votes
0answers
47 views
Apache Tiles: abstract definition extending another abstract one
I'm using Tiles 2.2 and I'd like to reuse a single JSP to display different messages. Messages have to be defined inside Tiles configuration file.
The following example is my approach: base is the ...
0
votes
0answers
79 views
using jsf in my jsp files with tiles
I have a xhtml with I must include into my jsp site. I've intergrated jsf into my project and everything works fine. The problem is that if I try to include a xhtml with tiles like this:
...
0
votes
0answers
74 views
insertDefinitions in JSP doesn't overwrite original tile
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" ...
0
votes
2answers
255 views
accessing form data in one jsp from another jsp
I am using Struts 2 and Tiles to develop an application.
I have 2 JSP files being loaded into 2 separate cells of a table (Tiles concept). The first JSP has links (created using <s:url/> tag). ...
0
votes
1answer
593 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.
...
-2
votes
0answers
14 views
Create a web page with a two column layout, using tiles where each column is a jsp
I am wondering if Apache Tiles is really used any more for new development. All the search results for my error seem old. On top of it I downloaded the layouts but when I try to use one I get an ...