some boiler plate docs
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Collection / Grid.pm
1 package Reaction::UI::Widget::Collection::Grid;
2
3 use Reaction::UI::WidgetClass;
4
5 class Grid is 'Reaction::UI::Widget::Collection', which {
6
7   implements fragment header_cells {
8     arg 'labels' => $_{viewport}->field_labels;
9     render header_cell => over $_{viewport}->computed_field_order;
10   };
11
12   implements fragment header_cell {
13     arg label => $_{labels}->{$_};
14   };
15
16 };
17
18 1;
19
20 __END__;
21
22 =head1 NAME
23
24 Reaction::UI::Widget::Grid
25
26 =head1 DESCRIPTION
27
28 =head1 FRAGMENTS
29
30 =head1 AUTHORS
31
32 See L<Reaction::Class> for authors.
33
34 =head1 LICENSE
35
36 See L<Reaction::Class> for the license.
37
38 =cut