SYNOPSIS

You'll need a working DBIx::Class setup and some knowledge of HTML::Widget and Catalyst. If you have no idea what I'm talking about, check the (sparse) docs of those modules.

   package My::Model::DBIC::Pet;
   use base 'DBIx::Class';
   _\|_PACKAGE_\|_->load_components(qw/HTMLWidget Core/);


   package My::Controller::Pet;    # Catalyst-style

   # define the widget in a sub (DRY)
   sub widget_pet {
     my ($self,$c)=@_;
     my $w=$c->widget('pet')->method('get');
     $w->element('Textfield','name')->label('Name');
     $w->element('Textfield','age')->label('Age');
     ...
     return $w;
   }

   # this renders an edit form with values filled in from the DB
   sub edit : Local {
     my ($self,$c,$id)=@_;

     # get the object
     my $item=$c->model('DBIC::Pet')->find($id);
     $c->stash->{item}=$item;

     # get the widget
     my $w=$self->widget_pet($c);
     $w->action($c->uri_for('do_edit/'.$id));

     # fill widget with data from DB
     $item->fill_widget($w);
  }

  sub do_edit : Local {
    my ($self,$c,$id)=@_;

    # get the object from DB
    my $item=$c->model('DBIC::Pet')->find($id);
    $c->stash->{item}=$item;

    # get the widget
    my $w=$self->widget_pet($c);
    $w->action($c->uri_for('do_edit/'.$id));

    # process the form parameters
    my $result = $w->process($c->req);
    $c->stash->{'result'}=$result;

    # if there are no errors save the form values to the object
    unless ($result->has_errors) {
        $item->populate_from_widget($result);
        $c->res->redirect('/users/pet/'.$id);
    }

  }

DESCRIPTION

Something like Class::DBI::FromForm / Class::DBI::FromCGI but using HTML::Widget for form creation and validation and DBIx::Class as a \s-1ORM\s0.

\$1

fill_widget

$dbic_object->fill_widget($widget);

Fill the values of a widgets elements with the values of the \s-1DBIC\s0 object.

populate_from_widget

my $obj=$schema->resultset('pet)->new->populate_from_widget($result); my $item->populate_from_widget($result);

Create or update a DBIx::Class row from a HTML::Widget::Result object

CAEVATS / POSSIBLE PROBLEMS

\s-1ERROR:\s0 null value in column \*(L"private\*(R" violates not-null constraint

This is a result of we trying to set a value to undef that should not be. This is typicaly a problem when you have a colum such ass \*(L"private boolean not null\*(R". We have a special-case for this, and if you set data_type => boolean, is_nullable => 0 in your ResultSource definition, we update the value to 0 before attempting to insert or update

AUTHORS

Thomas Klausner, <[email protected]>, http://domm.zsi.at

Marcus Ramberg, <[email protected]>

Andreas Marienborg, <[email protected]>

CONTRIBUTORS

Simon Elliott, <[email protected]>

Ashley Berlin

Guillermo Sansovic

LICENSE

This code is Copyright (c) 2003-2006 Thomas Klausner. All rights reserved.

You may use and distribute this module according to the same terms that Perl is distributed under.