Rose::HTMLx::Form::Field::Serial - represent auto-increment columns in a form


Rose-HTMLx-Form-Field-Serial documentation Contained in the Rose-HTMLx-Form-Field-Serial distribution.

Index


Code Index:

NAME

Top

Rose::HTMLx::Form::Field::Serial - represent auto-increment columns in a form

SYNOPSIS

Top

 # see Rose::HTML::Form::Field::Hidden

DESCRIPTION

Top

Rose::HTMLx::Form::Field::Serial is a subclass of Rose::HTML::Form::Field::Hidden. It exists simply to isolate a particular kind of form field that should not be updated via form but may need to be passed as a param or viewed in a (x)html serialized format. The namespace is reserved in the event that future functionality may be added, but mostly to uniquely identify this field type for use with Rose::DBx::Garden.

METHODS

Top

Currently no methods are overridden.

AUTHOR

Top

Peter Karman, <karman@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-rose-htmlx-form-field-serial@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Top

The Minnesota Supercomputing Institute http://www.msi.umn.edu/ sponsored the development of this software.

COPYRIGHT & LICENSE

Top


Rose-HTMLx-Form-Field-Serial documentation Contained in the Rose-HTMLx-Form-Field-Serial distribution.
package Rose::HTMLx::Form::Field::Serial;

use warnings;
use strict;
use base qw( Rose::HTML::Form::Field::Hidden );

our $VERSION = '0.002';

1;

__END__