OT: Training session in Sweden

2006-05-22 Thread Niklas Ekman
Hello, I'm wondering there are any Tapestry trainers for hire in Sweden? Best regards, Niklas Ekman

Re: Google Web Toolkit

2006-05-22 Thread Mike Snare
Wait till someone announces GWT on Rails.. yikes! Yes. Then we will indeed have found the holy GRail itself... -Mike - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Persistent Properites in pageAttached

2006-05-22 Thread Pratibha Gopalam
Hello all, When I try to access the persistent properties in the pageAttached method, I always get null. But I am able to access the persistent properties in any of the listener methods. I looked up the Javadoc (http://jakarta.apache.org/tapestry/tapestry/apidocs/index.html) and it says the

RE: Training session in Sweden

2006-05-22 Thread Skriloff, Nicholas
Niklas, I have been developing in Tapestry for 2 years at the University of Virginia and have been a professional teacher in the past. I would consider putting a two day REMOTE class together for you that would use Kent Tong's book at http://www.agileskills2.org/EWDT/chapters1-4.pdf The two day

Getting name of the current column in contrib:TableView

2006-05-22 Thread Dan Adams
Can anyone tell me how to get the name of the currently rendering column from TableView? I'm digging around but can't seem to find it. -- Dan Adams Software Engineer Interactive Factory 617.235.5857 - To unsubscribe, e-mail:

AW: Getting name of the current column in contrib:TableView

2006-05-22 Thread Bondarenko, Oleg
Using binding column e.g. for TableColumns or TableValues. component id=tableValues type=contrib:TableValues binding name=column value=currColumn/ binding name=class value= currColumn.columnName/ /component hope it helps. Mit freundlichen Grüßen / Best regards

Could you please check the sanity of my setup?

2006-05-22 Thread Rui Pacheco
Hi all I'm using Tapestry with DBCP for a simple CRUD application. I'm asking for help in terms of application architecture. Is this the right way to do it? So, I have an AbstractPage that extends BasePage and I use my AbstractPage as the basis for all my pages. In that AbstractPage I have a

RE: Google Web Toolkit

2006-05-22 Thread Townson, Chris
Horrible, horrible, GridBagLayout I loathe it. What an awful mess. CSS is so many thousands of times nicer for doing layout I am sympathetic to the applets not Javascript argument, though. Applets with CSS layout would be especially nice. But applets don't integrate well with

Multiple skins with Tapestry

2006-05-22 Thread Sergey G. Kashin
How to create multiple designs with tapestry for one application? may be good idea to use folders for skins design1/Home.html design2/Home.html design3/Home.html but for all that pages will need create view design1/Home.java design2/Home.java design3/Home.java that not very nice. Any ideas to

AW: Multiple skins with Tapestry

2006-05-22 Thread Bondarenko, Oleg
Wild thought: one could also misuse Locale and have localized templates like Home_design1, etc..., but all in the same folders. But I also like the idea with different folders more. Is it maybe possible? Mit freundlichen Grüßen / Best regards __ Oleg

Re: Multiple skins with Tapestry

2006-05-22 Thread Konstantin Ignatyev
Tapestry skins feature is in the 'wish list' http://wiki.apache.org/tapestry/WishList Any ideas if it will be moved into TODO list? Paul Cantrell [EMAIL PROTECTED] wrote: Yes, CSS for sure, and a border component that swaps out different CSS files based on some parameter. On May 22, 2006,

Contrib:Table using TextFields: form submit not as expected

2006-05-22 Thread Bode, Bianca
Hi all, I am using a Table component on my page, displaying a list of simple Box objects, which all contain a property called 'weight'. I want to be able to change these weight fields so I created the following: .html form jwcid=[EMAIL PROTECTED] tbody id=boxesList jwcid=boxesTable span

RE: Re[2]: Multiple skins with Tapestry

2006-05-22 Thread James Carman
Have you seen the CSS Zen Garden? You'd be surprised what you can do with CSS... http://www.csszengarden.com/ -Original Message- From: Sergey Kashin [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 11:09 AM To: tapestry-user@jakarta.apache.org Subject: Re[2]: Multiple skins with

RE: tapestry email service

2006-05-22 Thread Gentry, Michael \(Contractor\)
Henri, will the service work with Java 1.4.x? Thanks! /dev/mrg -Original Message- From: Henri Dupre [mailto:[EMAIL PROTECTED] Sent: Sunday, May 21, 2006 2:44 PM To: Tapestry users Subject: tapestry email service I finished packaging my email service into a nice jar file... You just

resolving strings to objects using bindings

2006-05-22 Thread Dan Adams
I need to take a normal binding string (such as spring:serviceName or service:serviceName) and resolve it to an object in an IEngineService. Can someone point me in the right direction on where to look for this? Thanks. -- Dan Adams Software Engineer Interactive Factory 617.235.5857

How to do..

2006-05-22 Thread Mário Lopes
Hi, I want to implement a chat. I was thinking about doing REST requests between clients and the object handling the chat. For instance, client would request a chat conversation by doing an HTTP POST http://host/ChatHandler?request=true On the servers side (Tapestry therefore), how should I do

Re: tapestry email service

2006-05-22 Thread Henri Dupre
No it would not but it would require very little changes to work with JDK 1.4. On 5/22/06, Gentry, Michael (Contractor) [EMAIL PROTECTED] wrote: Henri, will the service work with Java 1.4.x? Thanks! /dev/mrg -Original Message- From: Henri Dupre [mailto:[EMAIL PROTECTED] Sent:

Re: Uncaught PageRedirectionException (Tapestry 3.0.3)

2006-05-22 Thread Chris . McCurdy
No ideas or suggestions on this? That's a bummer. [EMAIL PROTECTED] 05/19/2006 03:18 PM Please respond to Tapestry users users@tapestry.apache.org To Tapestry users users@tapestry.apache.org cc Subject Uncaught PageRedirectionException (Tapestry 3.0.3) I've been having a user

RE: best development server for Tapestry

2006-05-22 Thread Gentry, Michael \(Contractor\)
I switched from Tomcat 5.0.x to Jetty (currently 5.1.8) because it seemed much faster/leaner for me (at least on my PowerBook). I still deploy on Tomcat, but Jetty works great for development so far. I can launch from within Eclipse (get Jetty Launcher) and debugging/hot swapping is pretty good.

Re: regular expression in pattern

2006-05-22 Thread Martijn Hinten
Hi Carl, I'm afraid the code that actually /calls/ the validator, is stripping the square brackets, so you can't pass in the regexp you mentioned below. I haven't looked up the code that calls a validator, but I assume it has to do with the syntax of the ognl-_expression_-parsing. The parser

Help with binding source

2006-05-22 Thread Dan Adams
I'm using binding source in an engine service (thanks Jesse!) and I have essentially the following: IBinding binding = bindingSource.createBinding( page, Page entity service, spring:widgetService, BindingConstants.OGNL_PREFIX, null); But I get an