in reply to Re^2: How do you use HTML::Widget::Plugin::Combo;
in thread How do you use HTML::Widget::Plugin::Combo;
From the test
for you to try{ # make a select field with AoA options my ($html, $tree) = widget(select => { options => [ [ '' => 'Flavorless', ], [ minty => 'Peppermint', ], [ perky => 'Fresh and Warm', ], [ super => 'Red and Blue', ], ], name => 'flavor', value => 'minty', });
{ my $factory = HTML::Widget::Factory->new(); my $html = = $factory->combo({ id => 'required', options => [ [ '' => 'Flavorless', ], [ minty => 'Peppermint', ], [ perky => 'Fresh and Warm', ], [ super => 'Red and Blue', ], ], name => 'flavor', value => 'minty', });
|
|---|