Jifty::Web::Form::Field::InlineButton - Add buttons without a form


Jifty documentation Contained in the Jifty distribution.

Index


Code Index:

NAME

Top

Jifty::Web::Form::Field::InlineButton - Add buttons without a form

METHODS

Top

render

Overrides the default render sub to print a span, not a div and not print labels and preambles and hints

XXX TODO the superclass should be more general, so we can just override those things to not print

render_wrapper_start

Don't show a wrapper for an inline button

render_wrapper_end

Don't show a wrapper for an inline button

render_preamble

Don't show a label for an inline button

render_label

Don't show a label for an inline button

render_hints

Don't show hints for an inline button


Jifty documentation Contained in the Jifty distribution.
use warnings;
use strict;
 
package Jifty::Web::Form::Field::InlineButton;

use base qw/Jifty::Web::Form::Field::Button/;



sub render_wrapper_start { }
sub render_wrapper_end {}
sub render_preamble {}
sub render_label {}
sub render_hints {}

1;