Re: [html-formfu] Using HTML::FormFU validation elsewhere

2009-02-06 Thread Dermot
2009/2/6 : > > Hi, > > you can use $form->process directly. Just put you data in a Hashref and > pass it to it. > > $form->process({field1 => "Value1", field2 => "Value2"}); > if($form->submitted_and_valid) { > > } else { > > cheers, > > moritz Thanx. I'll get to work on it. I'm sure I'll have mo

Re: [html-formfu] Using HTML::FormFU validation elsewhere

2009-02-06 Thread onken
Hi, you can use $form->process directly. Just put you data in a Hashref and pass it to it. $form->process({field1 => "Value1", field2 => "Value2"}); if($form->submitted_and_valid) { } else { } cheers, moritz On Fri, 6 Feb 2009 11:54:00 +, Dermot wrote: > Hi, > > In a Catalyst env, I