Re: Production mode not changing on latest snapshot

2010-04-29 Thread Raul Raja Martinez
@Inject @Symbol(SymbolConstants.PRODUCTION_MODE) private boolean production; This works fine, the problem is that I can only set Production mode to true if I explicitly set a system property... see below... public static void contributeApplicationDefaults(MappedConfiguration configuration) {

tapestry warning in log4j

2010-04-29 Thread asianCoolz
Hi, my log4j output the below warning, how to disable below warning and only show if there is error 10:12:12.506 WARN [http-8080-3] - Template for component PeopleSeeEmployeeMasterTable does not reference embedded components: controlCheckbox, checkbox. 10:12:15.271 WARN [http-8080-4] - Templa

Re: GSOC 2010 - ACCEPTED

2010-04-29 Thread Pablo dos Reis
Tks everybody Now I am studing about Scriptaculous I already create a wiki http://wiki.apache.org/general/PabloGSOC2010 I accept sugestions for it Soon I' ll post my doubts here. 2010/4/28 Charith Madusanka > Hi Pablo, > > Congratulations and Good luck...!!! > > Charith > > On T

Re: Possible bug in 5..2.0-SNAPSHOT - tapestry.js

2010-04-29 Thread Dustin Woods
Issue created. https://issues.apache.org/jira/browse/TAP5-1124 Thanks On Thu, Apr 29, 2010 at 4:28 PM, Howard Lewis Ship wrote: > I think you are correct. This has probably been working because the > new field gets added as a text field (since it

Re: [Announce] Tapestry5 jQuery integration and Tapestry5-ClientResources

2010-04-29 Thread Piero Sartini
Great news! Thanks for all the hard work! - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: CSS in Tapestry Component not used

2010-04-29 Thread Howard Lewis Ship
Tapestry 5.1 has an asset protection scheme that requires some configuration to allow access to asset files on the classpath; even innocuous things such as stylesheet files. Unless you understand the configuration, you'll see Assets exported as URLs that result in a 404. As you saw, moving them t

Re: Possible bug in 5..2.0-SNAPSHOT - tapestry.js

2010-04-29 Thread Howard Lewis Ship
I think you are correct. This has probably been working because the new field gets added as a text field (since it has an unknown value for its type attribute). Because of the logic you've seen, the text field is placed inside the invisible the Form component renders, thus it is not visible to the

Possible bug in 5..2.0-SNAPSHOT - tapestry.js

2010-04-29 Thread Dustin Woods
Hi all, I was noticing on some pages that an empty text field was being shown after submitting forms and narrowed it down to the tapestry.js code for the Tapestry.FormEventManager class. setSubmittingElement : function(element) { if (!this.submitHidden) { var hiddens = this.form.getInputs("hidde

Re: Fwd: F1 F1 F1 !!

2010-04-29 Thread Thiago H. de Paula Figueiredo
On Thu, 29 Apr 2010 06:31:48 -0300, tarek jaifar wrote: Salam Developer, Hi! I want know how to migrate from web application (JSP) to web application (TAPESTRY). You'll need to rewrite your web tier. The good news is that Tapestry 5 is a servlet filter, so you an migrate it a piece a

Fwd: F1 F1 F1 !!

2010-04-29 Thread tarek jaifar
Salam Developer, > I'm Tarek, new web developer using Tapestry framework and I'm wiriting this > email for help me in my situation. > > I want know how to migrate from web application (JSP) to web application > (TAPESTRY). > > If you have solution or usefull document, please give me it, > > I'm w

Res: Add custom CSS class to each TH element of grid

2010-04-29 Thread Everton Agner
Well, it's not exactly what you've asked, but the Grid component renders a table with a CSS class calles "t-data-grid", so you could do something like: table.t-data-grid thead tr th{ ... } But, about parameters, I guess you could only override the default "t-data-grid" CSS class by the "

Add custom CSS class to each TH element of grid

2010-04-29 Thread Radek Terber
Hi all I need add my custom CSS class to each TH element within table rendered by the Grid component, but I didn't find any method how to do it simply. Is there any way (as simply as possible) how to do it ? Does (for example) any grid's or grid model's parameter such parameter? Thanks. --

Re: [T5.1] Override FieldValidator for required

2010-04-29 Thread Nicolas Bouillon
On Wed, 28 Apr 2010 09:15:55 -0300, "Thiago H. de Paula Figueiredo" wrote: > On Wed, 28 Apr 2010 06:20:06 -0300, Nicolas Bouillon > wrote: > >> Hi, > > Hi! > >> public class AppModule{ >> [...] >> /** >> * Contributes the set of validators: >> */ >> public static void c

Re: CSS in Tapestry Component not used

2010-04-29 Thread Elisabeth Adler
Thanks for the tips! I resolved the issue by moving the component from my external component .jar file (which is included in my application) into my actual application, where it worked without any problems. It was the same code but everything worked there. Thanks again, Elisabeth On 25.04.2