Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
414 views

How can I use HTML::FormFu for jQuery AJAX form validation?

Are there any examples I can look at that use HTML::FormFu with AJAX form validation and submission? I would really not like to write my validation routines three times (once in JS, once in FormFu ...
1
vote
1answer
65 views

Populating $form_input with 'select' element options?

I'm trying to understand the data-structure required to populate a form with 'select' element values (options). When I dump (Data::Dumper) the FormFu object, I see that the object structure looks ...
0
votes
1answer
17 views

Using HTML::FormFu, how do you change a field value *after* processing so that it appears modified in Template Toolkit?

For example, if I process a form: my $form_input = { input_data => '123' }; $form->process($form_input); Then I want to alter the value of 'input_data': my $clearme = ...
0
votes
0answers
53 views

Form fu related question, how to localize titles in attributes?

I use FormFu as a plugin in Catalyst. I ran into some problems. How can I localize the title attribute? <attributes> title This is the titile </attributes> title_loc is ...
0
votes
1answer
481 views

How can I use XML::Simple to configure HTML::FormFu?

I assume you can use XML::Simple with HTML::FormFu because FromFu uses Config::Any to load it's config data. However, I can't seem to find any sample xml configs being used with HTML::FormFu. Not ...