Re: Grid: Customizing cell CSS based on property value

2010-04-01 Thread Stephan Windmüller
On 31.03.2010 20:31 matias.blasi wrote: Although Tapestry Grid don't allow you to specify cell CSS style, you can do something like this: ${o.someproperty} Of course, but I want to change the background-color of the whole cell. - Stephan --

Re: Tapestry and SeeSaw talk

2010-04-01 Thread Robin Komiwes
Private for me :) On Thu, Apr 1, 2010 at 8:28 AM, Ben Gidley wrote: > Ok - try http://www.vimeo.com/10588204 - this time it is hosted on my vimeo > accout and set to be public. > > > Ben Gidley > > www.gidley.co.uk > b...@gidley.co.uk > > > On Wed, Mar 31, 2010 at 8:41 PM, Christian Edward Gruber

Re: Tapestry and SeeSaw talk

2010-04-01 Thread Mark Allan
Me too. I even created a Vimeo account as the original error message wasn't very helpful, leading me to think that 'private' just meant you needed to be a Vimeo user, but I'm still getting: Sorry, you do not have permission to watch this private video. Mark On 1 Apr 2010, at 8:18 am

Re: Tapestry and SeeSaw talk

2010-04-01 Thread Ben Gidley
Ok mk27 - try now. I think next time I want to host some video I will DIY it Ben Gidley www.gidley.co.uk b...@gidley.co.uk On Thu, Apr 1, 2010 at 9:02 AM, Mark Allan wrote: > Me too. I even created a Vimeo account as the original error message > wasn't very helpful, leading me to think

Re: Grid: Customizing cell CSS based on property value

2010-04-01 Thread matias.blasi
page.tml: ${o.someproperty} app.css: .somestyleclass { background-color:red; width: 100%; height: 100%; } doesn't it works? Stephan Windmüller-8 wrote: > > On 31.03.2010 20:31 matias.blasi wrote: > >> Although Tapestry Grid don't allow you to specify cell CS

Re: Grid: Customizing cell CSS based on property value

2010-04-01 Thread Stephan Windmüller
Am 01.04.2010 12:28, schrieb matias.blasi: page.tml: ${o.someproperty} app.css: .somestyleclass { background-color:red; width: 100%; height: 100%; } doesn't it works? No, this was my first try. ;) - Stephan ---

Re: submit form on Safari and Opera doesn't work

2010-04-01 Thread Thiago H. de Paula Figueiredo
On Thu, 01 Apr 2010 02:25:48 -0300, LiborGMC wrote: This code works for me on Firefox 3 and IE8. It doesn't work on Safari 4, Opera 9.64. Why Opera 9.64? The latest version is 10.52 in Windows, 10.1 in other operating systems. I'm an Opera fan, use it all the time, including e-mail throgh

Res: Res: Res: [T5.1] Best approach to Nested Combos on Forms

2010-04-01 Thread Everton Agner
I'm not talking only about the Combos itself... Any other field from the form loses it's value when the Zone is updated... So, the plan is to send every field value? De: Geoff Callender Para: Tapestry users Enviadas: Quarta-feira, 31 de Março de 2010 20:30:1

Re: submit form on Safari and Opera doesn't work

2010-04-01 Thread Thiago H. de Paula Figueiredo
On Thu, 01 Apr 2010 02:25:48 -0300, LiborGMC wrote: I've tried use Opera debugger just make sure that JS code with submit form is called. Yes it is. I've tested your code in Opera 10.10 in Linux and it worked perfectly. I just added a link to submit the: onclick="document.getElementById(

Re: Grid: Customizing cell CSS based on property value

2010-04-01 Thread Dmitry Gusev
Give it another try, like this: table.t-data-grid tbody tr td.lastPingSummary { /* here may be selector for your column */ padding: 0px; /* remove padding from all column cells to avoid left and right space */ } .red { background-color: red;

Re: Page without markup

2010-04-01 Thread Dmitry Gusev
I don't like Dispatcher approach in one reason: using Dispatchers I will have to route incoming requests myself and pick (instantiate?) concrete task handler (and, maybe, manage their state?). In this case using pages is preferred for me. However I also refused to return StreamResponse from onActiv

Re: Page without markup

2010-04-01 Thread Thiago H. de Paula Figueiredo
On Thu, 01 Apr 2010 10:50:44 -0300, Dmitry Gusev wrote: I don't like Dispatcher approach in one reason: using Dispatchers I will have to route incoming requests myself That's right. and pick (instantiate?) concrete task handler (and, maybe, manage their state?). In this case using pages

Re: Page without markup

2010-04-01 Thread Thiago H. de Paula Figueiredo
(Answering again as I accidently hit the send button) On Thu, 01 Apr 2010 10:50:44 -0300, Dmitry Gusev wrote: I don't like Dispatcher approach in one reason: using Dispatchers I will have to route incoming requests myself That's right. and pick (instantiate?) concrete task handler If

Re: 5.0.1.8 Download?

2010-04-01 Thread xfile80303
Thank you Ulrich. That's what I was looking for. :) -- View this message in context: http://n2.nabble.com/5-0-1-8-Download-tp4832734p4838183.html Sent from the Tapestry Users mailing list archive at Nabble.com. - To unsubscri

Re: submit form on Safari and Opera doesn't work

2010-04-01 Thread Howard Lewis Ship
Earlier versions of T5 had a subtle bug. If you used a t:submit component without an explicit component id (no t:id attribute), it would be assigned the default id "submit". On the client side, form.submit (normally a JavaScript function) would be replaced with a reference to the submit element.

Tapestry-exceptionpage 0.0.1 released!

2010-04-01 Thread Kalle Korhonen
Another month, another release. This time we bring you a Tapestry-style replacement for this standard web.xml configuration: java.lang.Throwable /generalError.jsp Tapestry conveniently wraps up any uncaught exception inside ComponentEventException and displays a very nice exception page

Re: submit form on Safari and Opera doesn't work

2010-04-01 Thread LiborGMC
Hi, thanks for the reply. I've put code of "tml" file correctly but it has been adjusted somehow. Here is the code of link again: Submit What I'm trying to do is create actionLink (which call handleAction in Java). But before I handle this action I need some data on server. That is way I call su

Re: submit form on Safari and Opera doesn't work

2010-04-01 Thread LiborGMC
Link has been removed again. So another attempt: Submit -- View this message in context: http://old.nabble.com/submit-form-on-Safari-and-Opera-doesn%27t-work-tp28081757p28116037.html Sent from the Tapestry - User mailing list

Re: submit form on Safari and Opera doesn't work

2010-04-01 Thread LiborGMC
Link has been removed again. So another attempt: Submit -- View this message in context: http://old.nabble.com/submit-form-on-Safari-and-Opera-doesn%27t-work-tp28081757p28116039.html Sent from the Tapestry - User mailing list

Parameters in Contained Components

2010-04-01 Thread Brian Heston
This is sort of similar to my previous post asking about customizing components beyond what seems to be possible. This is a simple example involving the Grid component again. I want to set the "range" parameter of the GridPager, but since that is not also exposed by the Grid, I can't see how i