|
NAMEForm::Sensible::Field::LongText - Field for representing large amounts of character-string data. SYNOPSIS use Form::Sensible::Field::LongText;
my $textfield = Form::Sensible::Field::LongText->new(
name => 'username',
maximum_length => 16,
should_truncate => 0
);
DESCRIPTIONForm::Sensible::Field subclass for representing large amounts of character-string based data. It has all the same attributes and behaviors as Text, only is intended for larger amounts of text. It is separate from Text fields only because arger-blocks of text will likely require additional formatting and processing options. ATTRIBUTES
AUTHORJay Kuri - <jayk@cpan.org> SPONSORED BYIonzero LLC. <http://ionzero.com/> SEE ALSOForm::Sensible LICENSECopyright 2009 by Jay Kuri <jayk@cpan.org> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|