#XXX move to using 'handles' for this?
$meta->add_method('__id', sub {shift->$dm_reader->id} )
unless $class->can('__id');
- #XXX this one is for ActionForm, ChooseOne and ChooseMany need this shit
+ #XXX this one is for Action, ChooseOne and ChooseMany need this shit
$meta->add_method('__ident_condition', sub {shift->$dm_reader->ident_condition} )
unless $class->can('__ident_condition');
This is generally used by more specialised ViewPorts such as the
L<ListView|Reaction::UI::ViewPort::ListView> or
-L<ActionForm|Reaction::UI::ViewPort::ActionForm>. It can be either a
+L<Action|Reaction::UI::ViewPort::Action>. It can be either a
space separated list of column names, or an arrayref of column names.
=back
Sorts the given list of items such that the ones that also appear in
the spec are at the beginning. This is called by
-L<Reaction::UI::ViewPort::ActionForm> and
+L<Reaction::UI::ViewPort::Action> and
L<Reaction::UI::ViewPort::ListView>, and gets passed L<column_order>
as the spec argument.