The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

GappX::FormTraits - Traits for form fields

SYNOPSIS

    use Gapp;
    use GappX::FormTraits;

    $e = GappX::Entry->new( traits => [qw( CityEntry )], field => ... );

    $e = GappX::Entry->new( traits => [qw( EmailEntry )], field => ...  );

    $e = GappX::Entry->new( traits => [qw( StateEntry )], field => ... );

    $e = GappX::Entry->new( traits => [qw( StreetEntry )], field => ...  );

    $e = GappX::Entry->new( traits => [qw( ZipCodeEntry )], field => ...  );

DESCRIPTION

Provides traits to use with your form fields.

PROVIDED TRAITS

CityEntry

Sets width-chars to 25.

EmailEntry

Sets width-chars to 60.

StateEntry

Sets width-chars to 2.

StreetEntry

Sets width-chars to 35.

ZipCodeEntry

Sets width-chars to 5.

AUTHORS

Jeffrey Ray Hallock <jeffrey.hallock at gmail dot com>

COPYRIGHT & LICENSE

Copyright (c) 2010-2012 Jeffrey Ray Hallock.

    This is free software, licensed under:

    The Artistic License 2.0 (GPL Compatible)