|
NAMEReaction::UI::View - Render the UI. SYNOPSIS package MyApp::View::TT;
use base 'Reaction::UI::View::TT';
__PACKAGE__->config(
skin_name => 'MyApp',
);
## In the Window class:
$res->body($self->view->render_window($self));
DESCRIPTIONRender the viewports in the current window using the chosen skin and layoutset, via the matching widgets. See also: ATTRIBUTESappThe application Catalyst class. This is set at "COMPONENT" in Catalyst time for you. skin_nameThe name of the skin to use to render the pages. This should be the name of a subdirectory under the share/skin in your application directory. The default skin name is "default", the default skin is provided with Reaction. See also: Reaction::UI::Skin skinA Reaction::UI::Skin object based on the "skin_name". It will be created for you if not provided. layout_set_classThe class of the Reaction::UI::LayoutSet used to layout the view. Defaults to searching down the precedence tree of the View class looking for a class of the same name with "View" replaced with "LayoutSet". rendering_context_classThe class of the Reaction::UI::RenderingContext used to layout the view. Defaults to searching down the precedence tree of the View class looking for a class of the same name with "View" replaced with "RenderingContext". METHODSAUTHORSSee Reaction::Class for authors. LICENSESee Reaction::Class for the license.
|