Re: new submitType parameter

2006-08-11 Thread Bernard Lange
Jesse Kuhnert wrote: > It is required with a default value, so no one actually ever needs to > specify it if they don't want to. I wonder how I couldn't have noticed this... it must be from tiredness... sorry about that. Bernard ---

RE: @Block, accessing the caller's properties

2006-08-11 Thread Firas Adiler
Robert, This does offer greater flexibility indeed. Thanks for the tip! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 4:18 PM To: Tapestry users Subject: Re: @Block, accessing the caller's properties Note that "getInvoker" is a 4

Re: Open Source CRM

2006-08-11 Thread Ernst Thielmann
Is there anywhere a demo? I can't find it. Konstantin Ignatyev wrote: Friend of mine did something and hosts demo on my site: http://kgionline.com/crmt/app It is not complete but he has pretty darn good ideas about CRM systems (he buit few) and seeks somebody to teem up and finish the beast.

Re: Checkbox inside contrib:table (again)

2006-08-11 Thread Vinicius Carvalho
Thanks a lot Robert On 8/10/06, Murray Collingwood <[EMAIL PROTECTED]> wrote: I didn't realise you could code the @Block outside the table... My mistake. Cheers mc On 10 Aug 2006 at 16:14, [EMAIL PROTECTED] wrote: > On Fri, Aug 11, 2006 at 08:26:51AM +1000, Murray Collingwood wrote: > > Whe

Re: hivemodule.xml and classpaths and jetty6 and maven 2 snapshots..

2006-08-11 Thread hv @ Fashion Content
This is how I inject spring into my engine service: "Josh Long" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] >I was usuing tapestry 4.1.1-snapshot gleefully and one day it (m

custom validator based on which button pressed

2006-08-11 Thread Theo vN
Hi I use the same Form to either create (create button) a record or to search (search button) for records. I want to do input validation (only server-side is ok) when I create a record but not for when I search (maybe even other validation rules for when I search). The build in tapestry valida

Strange HiveMind/T4 error message

2006-08-11 Thread Michael Gentry (Yes, I'm a Contractor)
Environment: T4 4.0.2, HM 1.1.1, Jetty 5.1.8, Eclipse 3.2, JettyLauncher 1.4.1 In Eclipse, I have a Tapestry and HiveMind User Library defined which specifies all the JAR files in a directory path outside of the Eclipse workspace. I included these User Libraries in my project and all was fine. I

Namespaces & Overriding Pages

2006-08-11 Thread Michael Prescott
I have a situation where I have a set of pages defined by a library. These flow from one to another -- Michael Prescott

Re: Multiple Template Handling

2006-08-11 Thread hv @ Fashion Content
> > .. blah blah blah > > > Now considering the case where there are different layout patterns, which > have different Border.html pages for initial layout of where the content > goes, how will we handle the scenario? I assume you mean @Border not $Border I don't like the using the @Border much

Re: Strange HiveMind/T4 error message

2006-08-11 Thread hv @ Fashion Content
Hivemind and Tapestry JARs need to be in the same place if you use Tomcat, not sure about Jetty. The problem arisises if they are not using the same classloader. Do you have HM JARs in a shared/lib directory? I just put everything in WEB-INF/lib. Other options are just too much bother with class

RE: Strange HiveMind/T4 error message

2006-08-11 Thread James Carman
There is a workaround for this. I don't remember it off the top of my head, but many have encountered this. Just search this list for the answer. It has something to do with the Jetty launcher in Eclipse setting up duplicate classpaths or something. -Original Message- From: news [mailto

Re: Contrib:Table problems with layout

2006-08-11 Thread hv @ Fashion Content
mimetypes & DOCTYPES influence wether the browser goes in quirks mode or compliant mode. When you serve a page using a web server it may get a diffrent mime type than the one you get if you show a file on your harddisk. Test like for like when comparing starting out with identical files and mo

RE: Re: Contrib:Table problems with layout

2006-08-11 Thread Detlef Schulze
You should remove the hivemind libs from the eclipse start configuration for your container (at least that was the case with jetty) -Original Message- From: hv @ Fashion Content [mailto:[EMAIL PROTECTED] Sent: Freitag, 11. August 2006 17:08 To: users@tapestry.apache.org Subject: Re: Contr

RE: Strange HiveMind/T4 error message

2006-08-11 Thread Detlef Schulze
You should remove the hivemind libs from the eclipse start configuration for your container (at least that was the case with jetty) -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Freitag, 11. August 2006 17:05 To: 'Tapestry users' Subject: RE: Strange HiveMind/T4 e

RE: Re: Contrib:Table problems with layout

2006-08-11 Thread Detlef Schulze
Ups. Sorry, wrong thread. -Original Message- From: Detlef Schulze Sent: Freitag, 11. August 2006 17:13 To: Tapestry users Subject: RE: Re: Contrib:Table problems with layout You should remove the hivemind libs from the eclipse start configuration for your container (at least that was the

Tapestry [Hivemind] and OC4J another issue.

2006-08-11 Thread Vinicius Carvalho
Hello there! I was reading the Hivemind list (I have event post there) and it's a known bug in OC4J 10.1.2 (Issue 166 I believe), that hivemind needs a hack to work with 10.1.2, but folks said that it works with 10.1.3. Well I've upgraded to 10.1.3 and I'm getting an error: org.apache.hivemind.Ap

FW: Namespaces & Overriding Pages

2006-08-11 Thread Michael Prescott
One more time, without the pre-emptive send. :-) I have an application made up of a bunch of pages, that will occasionally need to be customized. The customizations could involve changing pages, or changing the flow between pages - adding additional steps or removing some, for example. The idi

Re: tapernate anonymous svn access?

2006-08-11 Thread Danny Mandel
Yes, that's the same problem I'm having. Is it supposed to be open for checkout? The project page said "The source can be checked out anonymously from SVN with this command: svn checkout http://svn.javaforge.com/svn/tapestry/tapernate/trunk tapernate" so I assumed I would be able to get it.

Re: hivemodule.xml and classpaths and jetty6 and maven 2 snapshots..

2006-08-11 Thread Josh Long
Thank you, hv! It's very, very appreciated. (Im sending myself that information in an email) Josh On 8/11/06, hv @ Fashion Content <[EMAIL PROTECTED]> wrote: This is how I inject spring into my engine service:

Re: custom validator based on which button pressed

2006-08-11 Thread Karthik N
your search should be bound to the form refresh listener - that way validations won't fire. On 8/11/06, Theo vN <[EMAIL PROTECTED]> wrote: Hi I use the same Form to either create (create button) a record or to search (search button) for records. I want to do input validation (only server-side

Re: custom validator based on which button pressed

2006-08-11 Thread Simon Raveh
Is there a way to tie a submit button to the refresh/cancel listener without using javascript using tapestry 4.0 Simon Karthik N wrote: your search should be bound to the form refresh listener - that way validations won't fire. On 8/11/06, Theo vN <[EMAIL PROTECTED]> wrote: Hi I use the

RE: tapernate anonymous svn access?

2006-08-11 Thread James Carman
yes, it's supposed to be and it used to be. I don't know what's going on. Maybe some glitch with JavaForge or they changed the password. I have no idea. -Original Message- From: Danny Mandel [mailto:[EMAIL PROTECTED] Sent: Friday, August 11, 2006 1:04 PM To: Tapestry users Subject: Re:

RE: Strange HiveMind/T4 error message

2006-08-11 Thread Gentry, Michael \(Contractor\)
Hmm, sounds like it might be Jetty-related then. My best guess so far was that HiveMind (or Java?) had a problem with symbolic links on a Unix system. My Eclipse workspace is ~/Projects/eclipse/workspace, but Projects is a symbolic link to /usr/local/mrg/Projects, so all of the JAR paths went

Overriding library pages & components

2006-08-11 Thread Michael Prescott
I'll rephrase my question much more simply! Can I override pages or components in libraries the same way that I can override framework components? Michael Prescott

canonical way to add behavior?

2006-08-11 Thread Patrick Moore
Hi there - I think this is one of those questions that "everyone-knows-the-answer" so no one documents the answer for those who don't! The problem: I want to create a BroadcastMessage to hold entered information. Until the user successfully submits the page, the page needs to work on the same ob

Easy insert and tapestry 4.1

2006-08-11 Thread Josh Long
Hello all, Anyone had any success getting the tapfx easy-insert component working in tapestry 4.1? I tried (err.. dropped it in my classpath under WEB-INF/lib/ and replaced a working company with ${company.name} on Home.html ) it in mine and was rewarded with : vemodule.xml, line 23, column 21]

Re: Easy insert and tapestry 4.1

2006-08-11 Thread Patrick Moore
It says that the parameter 'parameters' must not be null --- Josh Long <[EMAIL PROTECTED]> wrote: > Hello all, > > Anyone had any success getting the tapfx easy-insert component working in > tapestry 4.1? I tried (err.. dropped it in my classpath under WEB-INF/lib/ > and replaced a working

Re: [OT] Why jwcid?

2006-08-11 Thread Howard Lewis Ship
You can configure what attribute Tapestry uses to "recognize" components. The default is "jwcid", you can change this to anything you like, even "id". http://tapestry.apache.org/tapestry4/UsersGuide/configuration.html org.apache.tapestry.jwcid-attribute-name On 8/10/06, Karthik N <[EMAIL PROTEC

Re: Easy insert and tapestry 4.1

2006-08-11 Thread andyhot
I've yet to try it on 4.1 - i'll take a look at the problem and post an update soon. BTW, i'll probably allow customization of those characters and default them to #{...} instead of ${...} The reason is that tacos (and perhaps tapestry later on) provides a binding that also makes use of these cha

Re: Easy insert and tapestry 4.1

2006-08-11 Thread andyhot
Hey josh, since i'm not yer ready for a release of easyinsert, here's an untested jar to try... >From Josh Long <[EMAIL PROTECTED]>: > Hello all, > > Anyone had any success getting the tapfx easy-insert component working in > tapestry 4.1? I tried (err.. dropped it in my classpath under WEB-IN