in reply to HTML::FormHandler rendering (somewhat SOLVED)

I read through the documentation, the manuals, and the source. I couldn't find any mention of legend. From my vantage point, I think that FormHandler will ignore legend, regardless of whether you try to enter it or not:). I tried entering legend with this script, but no luck.
#!/usr/bin/perl use strict; use warnings; use HTML::FormHandler::Moose; extends 'HTML::FormHandler::Model::DBIC'; use namespace::autoclean; my $form = HTML::FormHandler->new( field_list => [ authors => { type => 'Multiple', label_column => 'last_name', legend => 'first_name', required => 1 } ] ); $form->process(); print my $rendered_form = $form->render;

Replies are listed 'Best First'.
Re^2: HTML::FormHandler rendering
by stonecolddevin (Parson) on May 18, 2010 at 18:14 UTC

    Moose imports strict and warnings for you, fyi.

    mtfnpy