The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
0
votes
1answer
266 views

Sending jquery-mobile form data to an email address

I am new to programming. I have built a multi-page form for an Android phone using jquery-mobile + phonegap. The form looks and works great, but it seems I have now hit a dead end. I want the ...
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
1answer
95 views

Form object's id being set to 0

I'm lost for ideas as to why this controller method is not working, but maybe someone has seen something like this before. My web form supplies all the Property object's variables (one of them being ...
3
votes
2answers
665 views

How do I get files AND form values from an ASP.NET MVC 4 website?

I have an ASP.NET MVC Website that has a dropdown list that is being created using this in the view... @Html.DropDownList("Programs") Programs is populated from a Business Object collection and ...
0
votes
0answers
51 views

How to pass data through POST to different TAB?

I have developed an application using Spring-MVC and hibernate which involves user registration . And there are many field such as name , age, email_id and it is working fine . Now I want to give my ...
0
votes
1answer
1k views

How to invoke a controller using a button in Spring-mvc?

I am using Spring MVC. I have a home page called index.jsp <a href="register.htm"> Register an Employee</a> <input type="button" onclick="register.htm" value="REGISTER"> When i ...
1
vote
2answers
193 views

View Model that contains a List that contains a String List not returning on submit

Working with MVC I have a FormModel: public class FormModel { public string Description { get; set; } public List<CustomList> CustomList { get; set; } public FormModel(){} } ...
0
votes
1answer
751 views

Symfony2 Form handler check changes before persist

I'd like to check changes of my hydrated entity before the persist. I've tryed to get a new entity into the onSuccess (after bindRequest) with DB values using a find, but this object have the ...
1
vote
4answers
828 views

jQuery hide form on submit?

I have a form setup where a user can register, and on submittal, a PHP script runs which validates the user, and once that is done, it echoes a messagebox which jQuery quickly hides and then fades in ...
6
votes
2answers
318 views

Learn to Code a PHP Form Framework

Have you ever seen a book, article, or tutorial specifically about PHP form framework? I'm not talking about a whole framework, but just the bits to handle form. For now, I've used Zend's form and ...
0
votes
2answers
800 views

can't read the value of a checkbox array after submit a form

I don't know what I miss here but I try to make a really simple form with a checbox in it, here is the html: (...) <input type="checkbox" name="test[]" value="js"> Javascript <br> ...
0
votes
3answers
180 views

What does this code do?

if (in_array($form['#submit'], 'search_box_form_submit')) { $key = array_search('search_box_form_submit', $form['#submit']); unset($form['#submit'][$key]); } ...
2
votes
4answers
421 views

GET vs. POST (form processing)

I completely understand the differences between the two in terms of form handling, user discretion and privacy of data, but in what situation would anyone rather use GET over POST when sending form ...
2
votes
3answers
846 views

What's a good way to handle post data in Codeigniter?

I.e. would you recommend me to use one controller method like this: function save() { if(!is_bool($this->input->post('')) { $post_data = $this->input->post(''); ...