Tagged Questions
0
votes
1answer
32 views
HTML::FormHandler just 1 option not rendering correctly
I'm using HTML::FormHandler and building the form dynamically like so:
my $form = HTML::FormHandler->new(
name => 'types',
field_list => [
parent_id => {
...
0
votes
0answers
78 views
HTML::FormHandler dynamic form use your own widgets
I'm using HTML::FormHandler to dynamically create a form like so:
my $form = HTML::FormHandler->new(
name => 'types',
field_list => \@field_list,
widget_name_space => ...
0
votes
0answers
17 views
HTML::FormHandler process_attrs not working
I'm using HTML::FormHandler and I would like to render my forms using the example shown here. In the section above, it says that you need to do this so that the process_attrs method will work:
use ...
0
votes
0answers
42 views
in module HTML::FormHandler how to set field's attribute value from Form's attribute?
i use HTML::FormHandler to render html form.
now i want to set the field's attribute to the form's attribute's value. but i donot how to .
package MyForm;
use HTML::FormHandler::Moose;
extends ...
3
votes
1answer
52 views
HTML::FormHandler roles vs fields
I'm using HTML::FormHandler, and in an effort to not repeat a lot of code I am trying to split my form up into reuasable pieces as suggested by the HTML::FormHandler Cookbook. It discusses being able ...
0
votes
1answer
58 views
HTML::FormHandler persistent form class
I'm using HTML::FormHandler and I'd like to make my form persistent by making it a moose attribute in my controller class. In HTML::FormHandler's Manual Intro documentation, it says this:
FormHandler ...
0
votes
2answers
88 views
HTML::FormHandler dynamically set default form value
I'm using HTML::FormHandler and I'd like to be able to dynamically set default values for the form. Here would be a good example of what I would like to be able to do:
#this doesn't work
my $form = ...
1
vote
2answers
70 views
HTML::FormHandler slow in Catalyst with mod_perl
I'm using HTML::FormHandler with my mod_perl/Catalyst app to generate a form for my users. It works fine, the only problem is that it slows down page load time by a lot. Here is my subroutine that ...
0
votes
1answer
96 views
HTML::FormHandler validate select
I'm using HTML::FormHandler to create some forms, and I'd like to be able to validate any select fields on the form by making sure that whatever value submitted was actually a value given to the user. ...
0
votes
1answer
130 views
Given a query string and the empty form html it came from generate filled in html
I have an html with empty forms and I have the query string that was generated when filling in those forms.
How can I merge them together into a filled in html page?
Hopefully you can give me a ...
0
votes
0answers
103 views
How to convert perl HTML::Form form into an html dump (WWW::Mechanize)
I have a form with filled in fields using HTML::Form :
$form->value($name => $value);
I can dump the status of the form using $form->dump and double check that what I edited is what is ...
0
votes
1answer
94 views
HTML::FormHandler Form really slow
I am using HTML::FormHandler for a web app I'm creating. The forms work fine, the only issue is that just loading the form can cause the page 2-3 seconds to load. I know HTML::FormHandler uses Moose, ...
0
votes
1answer
88 views
Perl CGI Changes Not Being Reflected in Browser
I am new to Perl Scripts and I am having a bit of trouble. I have an HTML Form that transmits some data to a CGI script. However, it seems to be going off the oldest version of the CGI script ...
2
votes
1answer
1k views
Parse HTTP:Response object
I am having some difficulties getting results from a form via Perl. I believe I have successfully found the form and submitted the value I want to the appropriate field, but am unsure of how to turn ...
0
votes
4answers
147 views
Is there a javascript (jquery) library for updating html form controls from cgi parameters?
Our site has some very complicated form controls that are submitted and then show up again on the results page in case users want to resubmit the form from the results page.
Currently, this requires ...
1
vote
4answers
123 views
What PHP/Shell Framework can be used to access HTTP-POST/-GET Forms (besides curl)?
I'm searching an abstraction layer from pure HTTP-POST/-GET using curl. It should somehow make it easy to define the Targeted script and it's variables.
I read something exists in the FreeX (german ...