Re: FCKEditor Ajax Form Submit

2009-09-01 Thread newtonik
Thanks Guys, Works very well! Newton Thiago H. de Paula Figueiredo wrote: > > Em Tue, 01 Sep 2009 11:43:45 -0300, newtonik > escreveu: > >> Hey, > > Hi! > >> Has anyone been able to figure out a way to use the FCKEditor in a ajax >> form submissio

FCKEditor Ajax Form Submit

2009-09-01 Thread newtonik
Hey, Has anyone been able to figure out a way to use the FCKEditor in a ajax form submission. It seems like the data in the editor doesn't get assigned during a ajax submit. This prevents me using formzone when I have fckeditors textarea. Has anyone worked around this issue? Thanks. Newton --

Re: ValidateForm Event

2009-08-31 Thread newtonik
Hi, To keep all your validation in onValidateForm, I something like this. String onValidateForm() { if(userName == null ) { form.recordError(usernameField, "Needs a Username") } if(password == null ) { form.recordError(passwordField, "Please Enter a pas

Re: Querying request URL from within Tapestry 5

2009-08-29 Thread newtonik
Hey, I am not sure if you understood what Christian said, but in the code below, the last part of the url gets passed as a parameter to the onActivate function. You do have to do any string manipulation of the url. You can just get integer. So when you are enter to the page class below, thanks

Re: ValidateForm Event

2009-08-29 Thread newtonik
I think you should use the onValidateForm for both field level and cross-field validation to keep your validation in the correct callback. I would just use nested loops to first check for field level validation then if successful, perform cross field validation. Benny Law wrote: > > Hello, >

Re: Just trying to get an Active Transaction

2009-07-14 Thread newtonik
e rea per-threadl Hibernate session. I > think the Envers code is written in such a way that it requires the > real Session. > > On Tue, Jul 14, 2009 at 8:48 AM, newtonik wrote: >> >> >> newtonik wrote: >>> >>> Hey, >>> I am trying to do auditing

Re: Just trying to get an Active Transaction

2009-07-14 Thread newtonik
newtonik wrote: > > Hey, > I am trying to do auditing/versioning using the Hibernate > http://www.jboss.org/files/envers/docs/index.html Envers module. I look > around, didn't really see much doc on versioning by tapestry users. > However, I got it work, as in, It

Just trying to get an Active Transaction

2009-07-14 Thread newtonik
Hey, I am trying to do auditing/versioning using the Hibernate http://www.jboss.org/files/envers/docs/index.html Envers module. I look around, didn't really see much doc on versioning by tapestry users. However, I got it work, as in, It automatically saves new revisions if I ask it to. However,

Re: T5 : Dependant dropdown boxes

2009-07-10 Thread newtonik
I am also about to try to implement it. Has anyone out there done this. If you have, please share tips and samples. Javascript in Tapestry is not as simple as we would like. Thanks. -- View this message in context: http://www.nabble.com/T5-%3A-Dependant-dropdown-boxes-tp15760811p24433504.html Se

Re: ChenilleKit Mail -- How to Use? or Any Mailer?

2009-06-19 Thread newtonik
It is the case...I switched to 1.0.0 and it works now. Not sure why, I did notice they don't use the Configuration constants in Appmodule in 1.0.2 bbcooper wrote: > > I am using CK 1.0.0, but I think this should not be the case. > > 2009/6/19 newtonik > >

Re: ChenilleKit Mail -- How to Use? or Any Mailer?

2009-06-18 Thread newtonik
bbcooper wrote: > > Hope that helps. The above example also uses ConfigurationService ( > http://www.chenillekit.org/chenillekit-core/configuration.html) to read > properties from file. > > Cheers, > Borut > > 2009/6/18 newtonik > >> >> Can an

Re: ChenilleKit Mail -- How to Use? or Any Mailer?

2009-06-18 Thread newtonik
P.Stavrinides wrote: > > > Which version of CK are you using? > > -- > Massimo > http://meridio.blogspot.com > I am using 1.0.2 I compared the two versions I saw, the only difference I could see was they were the properties where retrieved. Thanks everyone, I will try the suggestions ton

ChenilleKit Mail -- How to Use? or Any Mailer?

2009-06-17 Thread newtonik
Can anyone give me an example on how to use this http://www.chenillekit.org/chenillekit-mail/SmtpService.html mailer . I am new to Tapestry and I have been trying some of their components. I decided to try the mailer today but I don't seem to know how to get it to work. I don't seem to know how t