| Reaction documentation | Contained in the Reaction distribution. |
Reaction::UI::Widget::Field::Mutable::File - A file input field
The field_type argument will be set to file.
See Reaction::Class for authors.
See Reaction::Class for the license.
| Reaction documentation | Contained in the Reaction distribution. |
package Reaction::UI::Widget::Field::Mutable::File; use Reaction::UI::WidgetClass; use namespace::clean -except => [ qw(meta) ]; extends 'Reaction::UI::Widget::Field::Mutable'; after fragment widget { arg field_type => 'file'; }; __PACKAGE__->meta->make_immutable; 1; __END__;