This engine adapts FormBuilder to use "HTML::Template". "HTML::Template" is the default template option and is activated one of two ways. Either: my $form = CGI::FormBuilder->new( fields => \@fields, template => 'form.tmpl', ); Or, you can specify an...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis documentation describes the usage of FormBuilder templates, as well as how to write your own template adapter. The template engines serve as adapters between CPAN template modules and FormBuilder. A template engine is invoked by using the "templ...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis module works with "CGI::FormBuilder" to create multi-page forms. Each form is specified using the same options you would pass directly into FormBuilder. See CGI::FormBuilder for a list of these options. The multi-page "meta-form" is a composite ...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis engine adapts FormBuilder to use "Template Toolkit". To do so, specify the "template" option as a hashref which includes the "type" option set to "TT2" and the "template" option set to the name of the template you want processed. You can also ad...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis engine adapts FormBuilder to use "Text::Template". Usage is very similar to Template Toolkit: my $form = CGI::FormBuilder->new( fields => \@fields, template => { type => 'Text', # use Text::Template template => 'form.tmpl', } ); The default opti...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis module provides default rendering for FormBuilder. It is automatically called by FormBuilder's "render()" method if no external template is specified. See the documentation in CGI::FormBuilder for more details....
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis engine adapts FormBuilder to use "CGI::FastTemplate". Please read these docs carefully, as the usage differs from other template adapters in several important ways. You will need to define three templates: "form", "field", and "invalid_field". Y...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTHESCO/CGI-FormBuilder-Config-Simple-0.12 - 04 May 2010 16:25:22 GMT
This engine adapts FormBuilder to use HTML::Template::Compiled. It works similar to CGI::FormBuilder::Template::TT2, not like CGI::FormBuilder::Template::HTML, because HTC can use the dot-syntax for accessing hash-keys....
TINITA/CGI-FormBuilder-Template-HTC-0.02 - 23 Nov 2006 19:03:38 GMTThis engine adapts FormBuilder to use "CGI::SSI". You can specify any options which "CGI::SSI->new" accepts by using a hashref: my $form = CGI::FormBuilder->new( fields => \@fields, template => { type => 'CGI::SSI', file => 'form.shtml', sizefmt => '...
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMTThis module provides default rendering for FormBuilder. It is automatically called by FormBuilder's "render()" method if no external template is specified. See the documentation in CGI::FormBuilder for more details....
BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 GMT