HTML Forms generation and validation 2008.04.06 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News HTML Forms generation and validation 2008.04.06 (Default branch)
# 1  
Old 04-07-2008
HTML Forms generation and validation 2008.04.06 (Default branch)

Image HTML Forms generation and validation is a PHP class that generates HTML forms supporting many built-in validation types on server and client sides. It prevents security attacks by discarding spoofed values, has multiple submit protection, outputs HTML for fields displayed as fully accessible or in read-only mode, and has field value filtering and reformatting. It can be extended with custom control plug-ins. AJAX based form submission, upload monitor progress bar, auto-complete text input, automatic layout renderer, calendar date, CAPTCHA, Google Maps world location selection, linked select, and animation effects plug-ins are available. License: BSD License (original) Changes:
The form submission buttons can now contain arbitrary HTML content inside the clickable area besides text, like images or other HTML elements. The validation error messages of the date input plug-in are configurable now.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
HTML::Widget::Constraint::CallbackOnce(3pm)		User Contributed Perl Documentation	       HTML::Widget::Constraint::CallbackOnce(3pm)

NAME
HTML::Widget::Constraint::CallbackOnce - CallbackOnce Constraint SYNOPSIS
my $c = $widget->constraint( 'CallbackOnce', 'foo', 'bar' )->callback( sub { my ($foo, $bar) = @_; return 1 if $foo == $bar * 2; }); DESCRIPTION
A callback constraint which will only be run once for each call of "process" in HTML::Widget. METHODS
callback cb Arguments: &callback Requires a subroutine reference used for validation, which will be passed a list of values corresponding to the constraint names. "cb" is provided as an alias to "callback". process Overrides "process" in HTML::Widget::Constraint to ensure "validate" is only called once for each call of "validate". render_errors Arguments: @names A list of element names for which an error should be displayed. If this is not set, the default behaviour is for the error to be displayed for all of the Constraint's named elements. validate perform the actual validation. AUTHOR
Carl Franks "cfranks@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2007-03-01 HTML::Widget::Constraint::CallbackOnce(3pm)