Re: [html-formfu] inheritance question

2009-02-25 Thread Malcolm
On Monday 23 February 2009, Carl Franks wrote: > > Though it would probably help if I got my examples the correct way > > around. > > > >package MySite::Controller::Profile; > >use parent qw(Catalyst::Controller::HTML::FormFu > > MySite::Controller::Base); works. > > > >pac

Re: [html-formfu] inheritance question

2009-02-22 Thread Malcolm
On Sunday 22 February 2009, Malcolm wrote: > There's probably something obvious I'm completely missing, but can someone > explain (or point me at the right place to RTFM, as I can't find it) why > this works: > > package MySite::Controller::Profile; >

[html-formfu] inheritance question

2009-02-22 Thread Malcolm
There's probably something obvious I'm completely missing, but can someone explain (or point me at the right place to RTFM, as I can't find it) why this works: package MySite::Controller::Profile; use parent qw(MySite::Controller::Base Catalyst::Controller::HTML::FormFu ); but

Re: [html-formfu] Fw: HTML::FormFu::Constraint::DateTimeRange - comments requested

2009-02-15 Thread Malcolm
On Thursday 22 January 2009, q wrote: > I did send this module a few days ago to this list, but did not receive any > comments. > > Is there no interest in such a module? I'm interested, I just haven't had time to look at it. Work periodically eats all my spare time, and as they don't pay me for

Re: [html-formfu] HTML-FormFu-Model-DBIC 0.03006 uploaded to cpan

2008-12-25 Thread Malcolm
On Wednesday 03 December 2008, Carl Franks wrote: > And just for good measure, I've also uploaded a new Model-DBIC ! A couple of the tests fail on my machine: # Failed test at t/update/has_many_repeatable_new_date.t line 62. t/update/has_many_repeatable_new_date..2/9

Re: [html-formfu] combo box equivalent

2008-09-15 Thread Malcolm
On Monday 15 September 2008 05:56:35 Carl Franks wrote: > The only thing I can think of, is that you're calling options() > directly on $combobox->elements->[0] > rather than on the combobox - don't do this - you should consider the > combobox a blackbox with regards its child elements. I was pro

Re: [html-formfu] combo box equivalent

2008-09-14 Thread Malcolm
On Monday 08 September 2008, Carl Franks wrote: > > I wonder if it should (have the option to) throw an error if they are > > different. So the form could go back to the user with a "which did you > > mean?" I'm not sure if that makes sense from a useability perspective > > though. > Maybe it woul

Re: [html-formfu] combo box equivalent

2008-09-07 Thread Malcolm
On Friday 05 September 2008, Carl Franks wrote: > I've added a new ComboBox element. > > You can build it just as you would a Select field, using options(), > values() or value_range() - but under the hood it's really a Multi > element, like the Date field. > > type: ComboBox > name: foo >

Re: [html-formfu] combo box equivalent

2008-08-31 Thread Malcolm
On Tuesday 26 August 2008, Carl Franks wrote: > >> > Is there a good way of doing a combo-box type element for a form? I've > >> > tried several variations, but so far I haven't found anything that > >> > doesn't end up requiring custom coding on the handler. > >> > > >> > This is the closest I've

Re: [html-formfu] combo box equivalent

2008-08-25 Thread Malcolm
On Monday 25 August 2008, Carl Franks wrote: > > I've been learning my way around FormFu (and Catalyst) recently and > > wishing they'd been available a few years ago - they make things so much > > easier. :-) > > > > Is there a good way of doing a combo-box type element for a form? I've > > tried

[html-formfu] combo box equivalent

2008-08-24 Thread Malcolm
Greetings, I've been learning my way around FormFu (and Catalyst) recently and wishing they'd been available a few years ago - they make things so much easier. :-) Is there a good way of doing a combo-box type element for a form? I've tried several variations, but so far I haven't found anythin