The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "module:Rose::HTML::Form"

Rose::HTML::Form - HTML form base class. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form is more than just an object representation of the <form> HTML tag. It is meant to be a base class for custom form classes that can be initialized with and return "rich" values such as objects, or collections of objects. Building up a...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field - HTML form field base class. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field is the base class for field objects used in an HTML form. It defines a generic interface for field input, output, validation, and filtering. This class inherits from, and follows the conventions of, Rose::HTML::Object. Inherit...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Repeatable - Repeatable sub-form automation. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Repeatable provides a convenient way to include zero or more copies of a nested form. See the nested forms section of the Rose::HTML::Form documentation for some essential background information. Rose::HTML::Form::Repeatable works l...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Set - Text area that accepts whitespace- or comma-separated strings. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Set is a subclass of Rose::HTML::Form::Field::TextArea that accepts whitespace- or comma-separated strings. Its internal value is a reference to an array of strings, or undef if the input value could not be parsed. Strings wi...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Text - Object representation of a text field in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Text is an object representation of a text field in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documented a second ti...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::File - Object representation of a file upload field in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::File is an object representation of a file upload field in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documented a se...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Date - Text field that inflates valid dates into DateTime objects. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Date is a subclass of Rose::HTML::Form::Field::DateTime that handles dates, but not times. (The time is always forced to be 00:00:00.) Valid input is converted to the format "YYYY-MM-DD" on output. See the Rose::HTML::Form::F...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Time - Text field that accepts only valid times and coerces valid input into HH:MM:SS AM/PM format. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Time is a subclass of Rose::HTML::Form::Field::Text that only allows values that are valid times, which it coerces into the form HH:MM:SS AM/PM. It overrides the validate() and inflate_value() methods of its parent class. Thi...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Email - Text field that only accepts valid email addresses. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Email is a subclass of Rose::HTML::Form::Field::Text that uses Email::Valid to allow only valid email addresses as input. It overrides the validate() method of its parent class, returning true if the internal_value() is a val...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Reset - Object representation of a reset button in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Reset is an object representation of a reset button in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documented a second...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Submit - Object representation of a submit button in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Submit is an object representation of a submit button in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documented a seco...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Option - Object representation of the "option" HTML tag. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Option is an object representation of a single option in a pop-up menu or select box in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridde...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Hidden - Object representation of a hidden field in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Hidden is an object representation of a hidden field in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documented a secon...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Integer - Text field that only accepts integer values. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Integer is a subclass of Rose::HTML::Form::Field::Numeric that only accepts integer values. It overrides the validate() method of its parent class, returning true if the internal_value() is a valid integer, or setting an erro...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Numeric - Text field that only accepts numeric values. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Numeric is a subclass of Rose::HTML::Form::Field::Text that only accepts numeric values. It overrides the validate() method of its parent class, returning true if the internal_value() is a valid number, or setting an error me...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

lib/Rose/HTML/Form/Constants.pm River stage two • 10 direct dependents • 12 total dependents

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Password - Object representation of a password field in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Password is an object representation of a password field in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documented a s...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Compound - Base class for field objects that contain other field objects. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Compound is a base class for compound fields. A compound field is one that contains other fields. The example in the SYNOPSIS is a full name field made up of three separate text fields, one each for first, middle, and last na...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::Checkbox - Object representation of a single checkbox field in an HTML form. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::Checkbox is an object representation of a single checkbox field in an HTML form. This class inherits from, and follows the conventions of, Rose::HTML::Form::Field. Inherited methods that are not overridden will not be documen...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC

Rose::HTML::Form::Field::DateTime - Text field that inflates valid dates and times into DateTime objects. River stage two • 10 direct dependents • 12 total dependents

Rose::HTML::Form::Field::DateTime is a subclass of Rose::HTML::Form::Field::Text that allows only valid dates as input, which it then coerces to DateTime objects. It overrides the validate(), inflate_value(), and deflate_value() methods of its parent...

JSIRACUSA/Rose-HTML-Objects-0.626 - 14 Aug 2023 14:40:38 UTC
70 results (0.057 seconds)