Create fields are fixed again. Also fixed: ChooseMany when tryingto remove the last...
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Object.pm
CommitLineData
2f670e13 1package Reaction::UI::Widget::Object;
7b78a39d 2
3use Reaction::UI::WidgetClass;
4
2f670e13 5class Object, which {
d7b00a50 6
7 implements fragment field_list {
c03f75a7 8 render field => over $_{viewport}->fields;
d7b00a50 9 };
10
11 implements fragment field {
12 render 'viewport';
13 };
14
7b78a39d 15};
16
171;
18
19__END__;
20
5a1a893e 21=head1 NAME
7b78a39d 22
2f670e13 23Reaction::UI::Widget::Object
7b78a39d 24
5a1a893e 25=head1 DESCRIPTION
26
27=head1 FRAGMENTS
28
6bc27bd3 29=head2 field_list
5a1a893e 30
cc44a337 31Sequentially renders the C<fields> of the viewport in the C<computed_field_order>
5a1a893e 32
49170400 33=head2 field
34
35Renders the C<field> viewport passed by C<field_list>
36
5a1a893e 37=head1 AUTHORS
38
39See L<Reaction::Class> for authors.
40
41=head1 LICENSE
42
43See L<Reaction::Class> for the license.
7b78a39d 44
45=cut