Re: Using t:select in Tapestry 5

2007-12-19 Thread Francois Armand
Yeeswara Nadapana (HCL Financial Services) wrote: Hi, Hello Yeeswara, Can anyone please explain me the procedure to add a select box to my form? If I write as: select t:type=select t:id=selectId t:model=selectModel t:value=selectValue/ Corelib components are document here :

Re: Using t:select in Tapestry 5

2007-12-19 Thread Davor Hrg
look for keyword SELECT on http://wiki.apache.org/tapestry/Tapestry5HowTos On Dec 19, 2007 8:55 AM, Francois Armand [EMAIL PROTECTED] wrote: Yeeswara Nadapana (HCL Financial Services) wrote: Hi, Hello Yeeswara, Can anyone please explain me the procedure to add a select box to my form?

Tapestry job opening

2007-12-19 Thread Joachim Van der Auwera
Synergetics, a Belgian IT research company is looking for java developers. The work will mostly involve building and improving application user interfaces using tapestry5. Short information and more info can be found at http://www.synergetics.be/html/jobs.html Though the opening is for

Re: Tapestry job opening

2007-12-19 Thread Joshua Jackson
Hi there, I'm interested with the job opening but before I proceed with applying, does it require me to be a Belgian citizen? Since currently I still reside in Indonesia but willing to move. Thanks in advance, On 12/19/07, Joachim Van der Auwera [EMAIL PROTECTED] wrote: Synergetics, a Belgian

Re: Tapestry job opening

2007-12-19 Thread Joachim Van der Auwera
Belgian citizenship is not a requirement. As long as you have the skills... Joachim Joshua Jackson wrote: Hi there, I'm interested with the job opening but before I proceed with applying, does it require me to be a Belgian citizen? Since currently I still reside in Indonesia but willing to

Help needed with DirectLink and page parameters (Was: Contrib:Table and page parameters)

2007-12-19 Thread Kaspar Fischer
Dear list, In order to isolate the problem, I tried to do something much simpler: showing a DirectLink on one of my pages. The tapestry manual gives an example on how to use DirectLink with listeners: http://tapestry.apache.org/tapestry4/QuickStart/directlink.html

Maven: archetype.xml descriptor cannot be found

2007-12-19 Thread Martin Ågren
Hi, It surprises me not having heard about this yet, so I might be doing something wrong. Running the maven command as per the tutorial (with/without the archetypeVersion parameter), I get the following error: [ERROR] BUILD ERROR [INFO]

Re: T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-19 Thread Marcelo Lotif
Hi, Try to override the equals() method from the Object on your Club class 2007/12/19, Penyihir Kecil [EMAIL PROTECTED]: Hi... i got another problem here, using select component inside a form. well, when it's on add modeit works to add new entry in the database. but when i try to

Re: [T5] overriding persistence strategy of all fields to conversation strategy

2007-12-19 Thread Filip S. Adamsen
Stick a @Meta(tapestry.persistence-strategy=conversation) annotation on your page class? -Filip Kristian Marinkovic skrev: Hi all, i'm currently implementing a conversation module (similar to seam) by defining an own persistence strategy. i thought of an explicit and an implicit mode for

backport 5.0.5 fix to 4.1.3?

2007-12-19 Thread Phillip Rhodes
Hi. I believe the same issue reported on tapestry 5.0.4 is happening in tapestry 4.1.3 https://issues.apache.org/jira/browse/TAPESTRY-1423 Can someone backport this to 4.1.3? Thank you. Basically, my app stops running and crashes with javassist no such class errors: ... 100 more

Can't get Tapestry5 to work with Spring

2007-12-19 Thread Dave . Derry
I'm new to Tapestry. I've been wanting to take a look at it for some time, and have a bit of time here at the end of the year. I've started with Howard's tutorial for Tap5 and got the first stage of that working easily. So then I created another simple page, and linked to that. Still working

Re: Can't get Tapestry5 to work with Spring

2007-12-19 Thread Emmanuel Sowah
I also have many problems trying to integrate T5 with spring. Scary!!! On Dec 19, 2007 7:26 PM, [EMAIL PROTECTED] wrote: I'm new to Tapestry. I've been wanting to take a look at it for some time, and have a bit of time here at the end of the year. I've started with Howard's tutorial for Tap5

RE: Can't get Tapestry5 to work with Spring

2007-12-19 Thread Joel Wiegman
Dave, I have Tapestry 5.0.5, Spring 2.0.4, and Sun Appserver 9 all working in harmony. Haven't really had any problems at all. Based on your post, it sounds like Tapestry is finding and initializing the beans. That's the toughest part, so if that's true, I might suggest to just simplify things

T4: New tacos release

2007-12-19 Thread andyhot
Hi, the new tacos release (4.1.1) is already deployed at maven's central repo. Details are at http://tacos.sourceforge.net/tacos4.1/ , here are some quick notes: -) tapdoc and tapdoc-maven-plugin. These can now work with annotation-only components, see

Re: T5:why my dispatcher not got called?

2007-12-19 Thread Howard Lewis Ship
contribute methods should be named after the service to which you make the contribution. Try naming the method contributeMasterDispatcher. On Dec 18, 2007 9:50 PM, Angelo Chen [EMAIL PROTECTED] wrote: Hi, I have a dispatcher that I like it to be called before page renders, problem is, it

[T5] Tapestry 5 and IntelliJ IDEA

2007-12-19 Thread Filip S. Adamsen
Hi there, Just a quick question: Is there a way to prevent IDEA complaining about unresolvable symbols in .tml files? I get hundreds of Cannot resolve symbol t:label etc. when performing code analysis. -Filip - To

Re: [T5] Tapestry 5 and IntelliJ IDEA

2007-12-19 Thread Michael Lake
Filip, make sure your encapsulating tags define the t namespace. html xmlns:t=http://tapestry.apache.org/schema/tapestry_5_0_0.xsd; MAIN BODY HERE /html also, in your settings under file types, make sure you've got .tml under the XML file type. if the reference to the .xsd is red, put the

Re: [T5] Tapestry 5 and IntelliJ IDEA

2007-12-19 Thread Jesse Kuhnert
-) Go to Settings - Errors - choose either the global ide profile or a project specific profile -) Go to Inspections - HTML Inspections - Unknown HTML tag attribute -) Add whatever attribute tags you want under Custom HTML tag attributes on the left. There is probably an easier way to do it,

Re: backport 5.0.5 fix to 4.1.3?

2007-12-19 Thread Phillip Rhodes
More information, although, I am confused why I alone would be having this problem with 4.1.3? There is no ClassFabUtils in tapestry 4.1.3, it uses a ClassFabUtils in hivemind. The tapestry 5.x went with a embedded ClassFabUtils. I went into the hivemind svn repo, and do not see a tag or

Re: T5:why my dispatcher not got called?

2007-12-19 Thread Angelo Chen
Hi Howard, This works, thanks. so how many Dispatcher services in Tapestry 5? only MasterDispatcher? also, what's the difference between Dispatcher and Filter? we have to bind(LocaleDispatcher.class) for dispatcher, but for Filter we dont have to do that, just

[T4] SpecificationParser (custom component specification elements)

2007-12-19 Thread Martino Piccinato
Hi, I was wondering whether it would be possible to add custom tags/features to component/pages specification. It seems not to be possible (or at least not suggested) as SpecificationParser id pretty hardcoded. I guess the only way to have custom enhancements of a Component would be to work

[T5] best practice to cancel edit page

2007-12-19 Thread Sven Homburg
hi there, who can me explain the best practice to cancel edit page? i have a save- and cancel button (both submit components) surrounded by a form component. if user press the cancel button, the edit form should make nothing than leave the page. without prepare, validation, etc is this

Re: T5:why my dispatcher not got called?

2007-12-19 Thread Howard Lewis Ship
On Dec 19, 2007 2:55 PM, Angelo Chen [EMAIL PROTECTED] wrote: Hi Howard, This works, thanks. so how many Dispatcher services in Tapestry 5? only MasterDispatcher? On service, MasterDispatcher, implements the Dispatcher interface, but it's a chain of command, delegating to its contributions.

Re: Can't get Tapestry5 to work with Spring

2007-12-19 Thread Howard Lewis Ship
On Dec 19, 2007 10:58 AM, Joel Wiegman [EMAIL PROTECTED] wrote: Dave, I have Tapestry 5.0.5, Spring 2.0.4, and Sun Appserver 9 all working in harmony. Haven't really had any problems at all. Based on your post, it sounds like Tapestry is finding and initializing the beans. That's the

Re: T4: New tacos release

2007-12-19 Thread Kalle Korhonen
Congrats on the new release, excellent job once again! Kalle On Dec 19, 2007 11:10 AM, andyhot [EMAIL PROTECTED] wrote: Hi, the new tacos release (4.1.1) is already deployed at maven's central repo. Details are at http://tacos.sourceforge.net/tacos4.1/ , here are some quick notes: -)

Re: T5:why my dispatcher not got called?

2007-12-19 Thread Angelo Chen
Hi Howard, Thanks for the explanation, it clears up many things. A.C. Howard Lewis Ship wrote: On Dec 19, 2007 2:55 PM, Angelo Chen [EMAIL PROTECTED] wrote: On service, MasterDispatcher, implements the Dispatcher interface, but it's a chain of command, delegating to its contributions.

T5: redirect page in a Dispatcher

2007-12-19 Thread Angelo Chen
Hi, I'm reading http://wiki.apache.org/tapestry/Tapestry5HowToCreateADispatcher2 Tapestry5HowToCreateADispatcher2 , it works, but how to redirect a page in the dispatch? here is the code: if(!canAccess) { throw new RuntimeException(Access violation!);

T5: redirect page in a Dispatcher

2007-12-19 Thread Angelo Chen
Hi, T5's url is nice looking, however I have a need to have something different, example: www.mysite.com/profile/98765 98765 is parameter passed to the page profile, can we change the order somehow: www.mysite.com/98765/profile www.mysite.com/98765/inbox www.mysite.com/98765/sent any hint to

Re: Maven: archetype.xml descriptor cannot be found

2007-12-19 Thread Andy Huhn
Hi Martin, I'm on Debian Lenny also, and I haven't had any issues. Although I believe I was on T5.0.5 when I installed the quickstart, not 5.0.6. Andy On Wed, 2007-12-19 at 17:38 +0100, Martin Ågren wrote: Hi, It surprises me not having heard about this yet, so I might be doing something

Re: T4: New tacos release

2007-12-19 Thread Matt Brock
andyhot wrote: -) new annotation @Cached along with @InjectPageLink, @InjectExternalLink, e.t.c. see http://tacos.sourceforge.net/tacos4.1/tacos-annotations/index.html I tried using this on a couple of complex dao-calculated elements (PropertySelections, for instance), but the methods

Re: T4: New tacos release

2007-12-19 Thread Matt Brock
Looking over the description further, the annotation is supposed to be useful for any non-abstract method, even those contained in (abstract) pages. Yet my @Cached methods are being repeatedly called on page generation. -- View this message in context:

Re: T4: New tacos release

2007-12-19 Thread Andreas Andreou
Yep, it's for non-abstract methods that return something and that appear within Tapestry pages or components. Is it possible that your method returns null? On Dec 20, 2007 7:30 AM, Matt Brock [EMAIL PROTECTED] wrote: Looking over the description further, the annotation is supposed to be

Re: T4: New tacos release

2007-12-19 Thread Matt Brock
Andreas Andreou wrote: Yep, it's for non-abstract methods that return something and that appear within Tapestry pages or components. Is it possible that your method returns null? No, I was trying it on a ListSelectionModel. Even an empty LSM is still an object. Are there any other

Re: T4: New tacos release

2007-12-19 Thread Andreas Andreou
it's in tacos-annotations... if you were building it on your own, perhaps you forgot the hivemind configurations? On Dec 20, 2007 8:11 AM, Matt Brock [EMAIL PROTECTED] wrote: Andreas Andreou wrote: Yep, it's for non-abstract methods that return something and that appear within Tapestry

Re: T4: New tacos release

2007-12-19 Thread Matt Brock
Andreas Andreou wrote: if you were building it on your own, perhaps you forgot the hivemind configurations? Aw, jeez... yeah, that might be a good idea, huh? Thanks. -- View this message in context: http://www.nabble.com/T4%3A-New-tacos-release-tp14423354p14431566.html Sent from the