NAME
Catalyst::Plugin::SuperForm - Create sticky HTML forms
SYNOPSIS
$c
->superform->text(
name
=>
'test'
);
$c
->superform->
select
(
name
=>
'select'
,
labels
=> {
'DE'
=>
'Germany'
,
'SE'
=>
'Sweden'
,
'US'
=>
'United States'
}
);
# Alias
$c
->sform->text(
name
=>
'test'
);
DESCRIPTION
Create sticky forms with HTML::SuperForm
.
METHODS
SEE ALSO
AUTHOR
Christian Hansen, ch@ngmedia.com
LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as perl itself.