AW: RE: Struts and Quartz Scheduler

2004-09-30 Thread Thomas Vogt
. Thanks for the tip ;) Thomas - Original-Nachricht Von: Struts Users Mailing List <[EMAIL PROTECTED]> An: 'Struts Users Mailing List' <[EMAIL PROTECTED]>, 'Thomas Vogt' <[EMAIL PROTECTED]> Betreff: RE: Struts and Quartz Scheduler Datum: 30/09/04 20:2

AW: Struts and Quartz Scheduler

2004-09-29 Thread Thomas Vogt
You need a class to be executed as Job public final class BerechnungsJob implements Job { /* (Kein Javadoc) * @see org.quartz.Job#execute(org.quartz.JobExecutionContext) */ public void execute(JobExecutionContext context) throws JobExecutionException { ... }

Re: Help on Validator MASK needed

2004-08-04 Thread Thomas Vogt
quot;*" needed to be changed to a "+". Allowing digits only without a proceeding "+" or "-" was something I added. That can be removed by taking out the "?" in the regular expression I gave. Hope this helps. Robert [EMAIL PROTECTED] 7/30/2004 8:10:14

AW: RE: Help on Validator MASK needed

2004-07-30 Thread Thomas Vogt
Validator MASK needed Datum: 30/07/04 15:14 > have you tried escaping the + and -? [+-] > > > -----Original Message- > > From: Thomas Vogt [mailto:[EMAIL PROTECTED] > > Sent: Friday, July 30, 2004 8:10 AM > > To: [EMAIL PROTECTED] > > Subject: Help on Valid

Help on Validator MASK needed

2004-07-30 Thread Thomas Vogt
Hi, I would appreciate some help, My DynaValidator Form doesn't get validated, I need a signed value (the field is an Integer). But the Mask doesn't seem to get the meaning in the plus or minus in front. Thats why whenever the form gets validated i get the mask error. Below is my actual validatio