1
vote
5answers
67 views
show / hide submit button
HOWTO?
show submit button only if one or two needed inputs are filled with a value
but if you remove on of the needed values, the submit has to disappear.
should be done with keyup i think.
any …
0
votes
1answer
26 views
ASP Button (Command vs Submit)
I want this to be a command button not a submit button, so that when the user presses the "Submit" button is "clicked".
ASP Code:
<asp:Button CommandName="StartButtonName" CommandArgument="soo"
…
0
votes
4answers
46 views
How do I submit a “file” input without submit button with JavaScript?
There is a way to automatically submit a form without clicking to a "submit" button?
I have a form with one "file" input. I would submit the form after the user have selected one file.
0
votes
3answers
84 views
ASP.NET catch the submit action
Hello,
I'm a super beginner ASP.NET developer. I read that on every submit the request parameters are being populated to the controls and instead of reading the "Response.Form[]" parameters I can …
1
vote
1answer
20 views
How to set values displayed after submit using PEAR QuickForm?
Let's say I've got form like this:
$form = new HTML_QuickForm('Novinky');
$defaults = array('text' => '');
$form->setDefaults($defaults);
$elements['text'] = $form->addElement('textarea', …
0
votes
2answers
32 views
jQuery; Submit Form if Required Fields Filled in and Other Combinations Are True
Hello.
I have a form with dozens of fields. Some are required, some are not. With the fields that are required, I have added class="required" to the item
I found this snippet of code and was …
0
votes
1answer
38 views
Issue with Django form when submitted using jQuery form plugin
hi,
when submitting my form using jQuery form plugin, the request received by the target view is different than that received when the form is submitted in the standard way (with no javascript), and …
0
votes
2answers
26 views
Issue with jQuery form plugin
hi,
I'm using the jQuery form plugin to call a function before submitting the form.
This function call google geocoder service, that finds the coordinates of an address, and set the value of a hidden …
0
votes
3answers
42 views
What should the action return when submitting multiple forms in an MVC app?
I have a form with multiple tabs. Each tab has its own <form>, defined like this:
<% Using Html.BeginForm("Save", "FirstSection")%>
I've got a master Save button that submits all the …
1
vote
3answers
78 views
How Do I Prevent Enter Key Submit in jQuery?
I'd like to either simply swallow an Enter key press in <input> fields or else instead substitute Tab key presses. I haven't yet decided which is best.
How can I do this in jQuery? I've got …
0
votes
2answers
24 views
IE8 cache ajaxSubmit
I am using the following function to do a image upload/display
The Target is the div where I am updating the content that is returned from the form function. I wanted ajax so I don't have to reload …
1
vote
1answer
58 views
Can’t get JSF input field value on JAVA backend
Hello.
I have following UI part on JSF - it's simple search form with input field and submit:
<h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
…
1
vote
1answer
57 views
jquery does not work in iexplorer
The code below works perfectly in firefox and chrome, but not in iexplorer. Can anyone help me.
$('form').live('submit', function()
{
$(this).ajaxSubmit(
{
target: …
0
votes
4answers
39 views
Button Element with Type Submit & PHP Challenges
Recently I change from <input type="button"> to <button> in my forms however the form being processed by PHP wouldn't then submit to the database. Am I missing something in my code?
…
1
vote
3answers
53 views
How do I add an invisible AJAX submit on my form triggered by input field updates, while also preserving the natural submit?
Greetings kind community of wise developers !! It's my first time writing and I've looked around but alas, am stuck and need some assistance. I would be very grateful to any kind souls who can help.
…
