aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/Widget/DisplayField.pm
blob: d8810255d787745588a3023a701949a5fc6c5217 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package Reaction::UI::Widget::DisplayField;

use Reaction::UI::WidgetClass;

class DisplayField, which {

  before fragment widget {
    arg label => $_{viewport}->label;
    arg value => $_{viewport}->value_string;
  };

};

1;

__END__;

=head1 NAME

Reaction::UI::Widget::DisplayField

=head1 DESCRIPTION

=head1 FRAGMENTS

=head2 widget

Additional variables available in topic hash: "viewport".

Renders "label" and "field"

=head2 field

 C<content> will contain the value, if any,  of the field.

=head2 label

 C<content> will contain the label, if any, of the field.

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

See L<Reaction::Class> for the license.

=cut