Re: where will I find : tapestry-tutorials.tar.gz ?

2011-08-07 Thread angelochen
that link goes to tapestry 4. to get started, you can try tutorial in this link: http://tapestry.apache.org/getting-started.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/where-will-I-find-tapestry-tutorials-tar-gz-tp4674321p4674548.html Sent from the Tapestry - User

where will I find : tapestry-tutorials.tar.gz ?

2011-08-07 Thread patelbhavin27
Hi , I am new to tapestry framework. I tried to go through the quick start tutorial. but the link to download the tar file " tapestry-tutorials.tar.gz " on this page : http://tapestry.apache.org/tapestry4/QuickStart/index.html is NOT WORKING. can somebody help me ? Thanks, Bhavin --

Re: Exception starting filter test

2011-08-07 Thread pradeeppantula
Hi Raj, Is your problem solved. I'm also facing similar issues while deployment in jboss5.1.0. Please help me in this regard, -- View this message in context: http://tapestry.1045711.n5.nabble.com/Exception-starting-filter-test-tp3407524p4673436.html Sent from the Tapestry - User mailing list

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread dragan.sahpas...@gmail.com
Well, selenium tests are mainly in the integration apps app1 to app6. IDK if other tests besides these are selenium tests. Cheers, Dragan Sahpaski On Sun, Aug 7, 2011 at 11:46 PM, wrote: > Thanks, that's what I was looking for. > I guess I will look further into this whether I can disable sel

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread lprimak
Thanks, that's what I was looking for.I guess I will look further into this whether I can disable selenium tests only,not all unit tests."dragan.sahpas...@gmail.com" wrote:> Oh, and if you explicitly want to disable tests just change the enabled> attribute from "true" to "false" for individual

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread dragan.sahpas...@gmail.com
Oh, and if you explicitly want to disable tests just change the enabled attribute from "true" to "false" for individual tests in src->test->conf->testng.xml Cheers, Dragan Sahpaski On Sun, Aug 7, 2011 at 11:25 PM, wrote: > Is there a way to just disable the selenium tests? > I, personally wou

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread dragan.sahpas...@gmail.com
If you use eclipse just run eclipse:eclipse (generates classpath entries for eclipse) and import the project as an existing project in eclipse and it will build it for you. Otherwise, just run gradle tasks and you will see all available tasks. Here are some of the tasks. assemble - Assembles all

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread lprimak
Is there a way to just disable the selenium tests? I, personally would just rather do that than to mess with my environment. For the subset of the trunk that I am compiling there aren't even any selenium tests to run... - To unsu

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread dragan.sahpas...@gmail.com
In ubuntu I just update the symlinks. IDK if you can instruct selenium to use a custom command instead of just firefox. Cheers, Dragan Sahpaski On Sun, Aug 7, 2011 at 11:07 PM, Jon Williams wrote: > I'm on Firefox version 5.01. I know it's possible to install multiple > versions of Firefox on

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread Jon Williams
I'm on Firefox version 5.01. I know it's possible to install multiple versions of Firefox on OSX. The trick will be getting the 3.6 version to be default. thanks On Sun, Aug 7, 2011 at 1:44 PM, dragan.sahpas...@gmail.com < dragan.sahpas...@gmail.com> wrote: > Hi, > Which version of firefox do yo

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread dragan.sahpas...@gmail.com
Hi, Which version of firefox do you have? the current selenium version in t5 is compatible with 3.6 but not with firefox 4 and firefox 5. Cheers, Dragan Sahpaski On Sun, Aug 7, 2011 at 10:39 PM, Jon Williams wrote: > Hi, > > I am attempting to build the SVN trunk. > When gradle build gets to t

SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread Jon Williams
Hi, I am attempting to build the SVN trunk. When gradle build gets to the point where it is indicating status "> Building > :tapestry-beanvalidator:test" Mozilla opens a new tab, with no content, and the build hangs. A wild guess, I need to do something to setup selenium locally? What else could

Re: T5 - using t:select nested inside beaneditform

2011-08-07 Thread Eric Torti
Ok, Vangel, thanks. Problem solved! I`m going to move on to your proposition of using t:selectObject. In the event of me getting stuck :] I`ll post the problems on a new thread. Thank you for the help. I greatly appreciated it. Eric Torti On Sun, Aug 7, 2011 at 8:38 AM, Vangel V. Ajanovski wro

Re: Select component... Can i just pass it a list of values?

2011-08-07 Thread dkeenan
Brilliant! Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/Select-component-Can-i-just-pass-it-a-list-of-values-tp4674906p4675175.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Select component... Can i just pass it a list of values?

2011-08-07 Thread Jonathan Barker
There is an example in the documentation: http://tapestry.apache.org/current/tapestry-core/ref/org/apache/tapestry5/corelib/components/Select.html in the Simple Example section. I think you would want t:model="literal:any=Any,perm=Permanent,temp=Temporary" On Sun, Aug 7, 2011 at 8:45 AM, dkee

Re: How do I add a dynamic number of forms to a page?

2011-08-07 Thread Jonathan Barker
The down side of this approach (depending on your target user) is that many users will expect all changes to all Persons to be submitted in a single submit. You could render a list of Person "views", with each view in a Zone, and then have an Edit Person link that would update the Zone content wit

Re: How do I add a dynamic number of forms to a page?

2011-08-07 Thread dkeenan
Yesss!. Tapestry seems to take care of it if I just create a loop. So I can loop through each person, create a form for each, and have one Form component with one set of field props in the page class that each generated HTML for can submit too. Brilliant. -- View this message in context: http:/

Re: How do I add a dynamic number of forms to a page?

2011-08-07 Thread Jonathan Barker
You can put a Form inside a Loop (over a Person list I presume in your case), and Tapestry will take care of rendering multiple forms. You will have a single t:id for the form, and Tapestry will take care of generating unique id's based on that. Look in to the "context" parameter of the form as a

Select component... Can i just pass it a list of values?

2011-08-07 Thread dkeenan
Hi. Is there any way I can create a select field and get is just to use the options listed in the html? The values I have are never going to change and Im happy with the list in the TML. Eg... I have... Employee Type: Any Permanent Temp

How do I add a dynamic number of forms to a page?

2011-08-07 Thread dkeenan
Hi there. I have a page on which I want to have a number of forms, one for each person. The forms will have forename, surname, etc... the usual fields. However, I wont know how many person forms I want on the page until runtime. At the moment it seems that I need to have a @Component on my page cl

Re: Remove @PageAttached & @PageDetached

2011-08-07 Thread Vangel V. Ajanovski
On 07/24/2011 07:48 PM, Thiago H. de Paula Figueiredo wrote: They were never equivalent. @PageAttached and @PageDetached are page instance lifecycle events. Without the pool, they don't make sense anymore, as each page is instantiated just once. I'm commenting a bit late on this one. I don

opinion on modal dialog

2011-08-07 Thread Vangel V. Ajanovski
In the past I have used the modal window from ChenilleKit, and recently I read the post from Taha on Java Magic blog, but I wanted to create something simpler, preferably without additional custom JavaScript code - just CSS and Tapestry zones. This is what I did, and I want to hear about any o

Re: T5 - using t:select nested inside beaneditform

2011-08-07 Thread Vangel V. Ajanovski
On 08/07/2011 06:31 AM, Eric Torti wrote: ... You have to use the "add" parameter in beaneditform for each manytoone property, and then use to wrap the select (or any other custom html to be shown for this property. Just copy the structure from my example and change selectobject wit