0
votes
3answers
70 views

web responsive design using tapestry

I want to build a web responsive website with tapestry, I add the meta data in the head section of the .tml file and used the css for the responsive design. However it doesn't work at all. I tested ...
0
votes
2answers
173 views

Overriding Tapestry Grid component column sort icons

The default column sort icons in Tapestry Grid components are blue and white. If you have a different color scheme on your page, you'll want to customize this. What's the best way to override the ...
0
votes
2answers
158 views

difficult use of Tapestry zones - changed ids

There are some problems appearing when I use tapestry 5.3.6, CSS, jQuery (using tapestry5-jquery 3.3.3) javaScript. When I set a page that has zones (I am using jQueryUI tabs) and then switch from ...
0
votes
1answer
138 views

beaneditform tapestry css style

I want to change the standard css style of the beaneditform but can't find the file (default.css) in eclipse or on my local computer?! any ideas? this folder assets is not existing in my ...
1
vote
1answer
297 views

How to change, override or cut off Tapestry default style?

I'm trying to use beaneditform in Tapestry 5.3 and I would like to know how to don't use the forms default css styles. I would like to use my css styles from my layout component. I tryed to override ...
0
votes
1answer
285 views

Change the position of the sort button in a grid in Tapestry 5

How do I change the position of the sort button in header of the grid in Tapestry 5? I have column names of different lengths and I break lines on spaces, so the button, which is appended to the end ...
0
votes
1answer
131 views

CSS style for radios in Tapestry 5

How can I get rid of the box look of radio buttons in IE8? They look like this: They look normal in other browsers. I'm using Tapestry 5. Thanks.
0
votes
1answer
472 views

Override Tapestry Grid

I want to extend the tapestry Grid component to be able to get the following behavior: I want a specific column to have the text aligned to the right, which is no problem with css. However I also ...
0
votes
2answers
2k views

Background image fixed with vertical scroll bar in IE, broken by Tapestry5 components/css

** EDIT November 17th ** Hi again, I wanted to show some code you can use to gracefully solve this issue. Make a blackbird.js file with the line commented out as mentioned in the accepted answer. ...
1
vote
1answer
531 views

Tapestry 5, loading css from filesystem

We are creating a Tapestry 5 webapp with an external designer creating and maintaining the css-files of the application. We would like him to be able to make changes to the css-files without the ...
1
vote
2answers
740 views

Display a javascript/css tooltip within a @For loop with Tapestry 4.0.1

I'm not at all familiar with Tapestry 4.0.1 and need to update a legacy application to display a formatted tooltip for a few links within a @For loop. What is the easiest/best way to go about ...
1
vote
1answer
535 views

Using Tapestry jwcid attribute and @Block component for CSS classing?

How does the Block component handle CSS classes? I have code like this: <style type="text/css"> .nameColumnHeader { width: 30%; } .nameColumnValue { width: 30%; vertical-align:top; } ...