0
votes
0answers
118 views

spring & tiles - including .html files

I've got a spring project using tiles as UI framework. I wanted to provide a generic controller handling static html files (no dynamic content - so no custom controllers). The generic controller is ...
0
votes
2answers
152 views

Creating a website with tiles of pages in HTML

How to create a Website with HTML5 and JavaScript which gives you an overview over several Websites? The shown web pages should be visible as tiles on the screen. Therefore they need to be displayed ...
0
votes
1answer
137 views

Can a templating engine like Tiles, Velocity, Freemarker etc be used outside of a web application?

I have a requirement to generate an HTML file from data that will be generated dynamically from a single recordset of a number of database tables. The HTML file will be used as an attachemment in an ...
3
votes
5answers
5k views

Simulating flipping live tiles in html

I need to code some html square "live tiles" that flip between 4 states periodically. Basically what I need is what this plug-in does http://www.drewgreenwell.com/projects/metrojs, but between 4 ...
0
votes
0answers
106 views

Struts 1.3 Tiles color of one tile overlapped to all?

I'm developing an application using struts1.3.8. My application has menu and body parts. Using Tiles Plugin i developed it.The menu background color is getting spreading to other tile(body) if that ...
3
votes
1answer
210 views

Rearrange tiles within an area

I'm trying to create a tile grid that can be rearranged. The tiles are of different sizes. Here's how far I've gotten. http://jsfiddle.net/psivadasan/dMtRs/ How do I prevent tiles from being ...
0
votes
2answers
324 views

unwanted border coming for layout page of struts2 project

I am devoloping a struts 2 project in which layout page is creating an unwanted border over it. I tried to remove it by putting padding and border as 0 px. but still it is coming. <%@ taglib ...
1
vote
1answer
103 views

How can I have a tile-able area to the left and right of a div?

I have a a div#main that has a background image with a vignetting effect. I want to keep this full image in the center of the page but I would like for a graphic to tile from the far left of the ...
0
votes
2answers
458 views

Struts2 tiles advanced appearance

I have a struts2 web application with tiles. I need to make header, sidebar and footer as static, ie. stay constant at their position on screen. An internal scroll bar for body part is needed. In ...
1
vote
1answer
189 views

Question on Tiles Framework

This question is more from a UI perspective. While we can create or rather specify different types of layouts using the Tiles definition, my question is what should be the strategy to define these ...
1
vote
2answers
754 views

HTML/CSS tiled border (left, bottom, right)

How do I create borders from images in CSS/HTML without using CSS3? I have three border tiles: left, right, bottom. The should show up (repeat-x/y) to the left, to the right and to the bottom of my ...
2
votes
1answer
154 views

Parsing 3D XML Tile Info

I am recreating a game (using only web languages, mind you), and for each room I have the XML for the tile placement. Parsing the XML doesn't produce the correct result, as there are not only X & ...
0
votes
1answer
212 views

JSON/AJAX Issue When Server Session Has Timed Out

I am making ajax and json calls within my site that has a session timeout of 120 minutes on the server side. After the time has expired and a user tries to make an ajax or json call from a page that ...
3
votes
3answers
114 views

Remove margin between rows of overflowing inline elements

I'm creating a tile-based game and am using block rendering to update a large list of tiles. I'm attempting to do this in the most simple manner, so I've been trying to work with HTML's default ...
0
votes
2answers
894 views

Exception sending context initialized event to listener instance in tiles

i am using tiles (2.0) for the first time. i wrote the following code in web.xml <context-param> ...
7
votes
4answers
2k views

Pure HTML + JavaScript client side templating

I want to have achieve something similar to Java Tiles framework using only client side technologies (no server side includes). I would like to have one page, eg layout.html which will contain layout ...
0
votes
0answers
223 views

Tiles-def xml put values with html tags

in tiles def <tiles:insert definition="link"> <tiles:put name="name" value="rule<sup>tm</sup>"/> </tiles:insert> Can i use anything like this inside put value html ...
5
votes
3answers
4k views

HTML/JS/CSS Isometric Grid with semi-transparent click-through tiles

I'm trying to create a web app/game that uses a side-on 'isometric' view and transparent tiles. I can display them ok (but not great) using a PHP formula that just sets each div (each tile) as ...
1
vote
1answer
1k views

Tiling a asynchronously loaded image - stuck between an <img> and a background URL

For a site with a lot of small thumbnail images, I wanted to use a placeholder gif while each image was loading. This requires code like the following: $('.this_img').each(function(){ var ...
0
votes
1answer
107 views

Can anyone point me to a good article on “abstracting HTML”?

I'm currently working on a legacy eCommerce system front-end that has alot of duplicate HTML code. I'm trying to find a way to abstract out the complexity almost as you would when moving the ...