in reply to Re: How do you use HTML::Widget::Plugin::Combo;
in thread How do you use HTML::Widget::Plugin::Combo;

Yeah well . . . I'll continue looking at the .pm and .t but it still doent help. The .t is convoluted with isa calls that are throwing me off . . .
  • Comment on Re^2: How do you use HTML::Widget::Plugin::Combo;

Replies are listed 'Best First'.
Re^3: How do you use HTML::Widget::Plugin::Combo;
by Anonymous Monk on Sep 07, 2007 at 12:14 UTC
    Stop looking and read docs :)

    From the test

    { # 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', });
    for you to try
    { 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', });