0
votes
1answer
37 views
cancel a submit in jquery?
Hi all, im doing a form validation and I want to validate the input fields when "on submit" if error Im using jquery.scrollTo to go to error:
$('#form_inscripcion').submit(functio …
3
votes
2answers
32 views
Rails Restful actions Index Put
I have frequently run into the situation where I want to update many records at once - like GMail does with setting many messages "read" or "unread".
Rails encourages this with th …
0
votes
2answers
39 views
Why is this render :partial line iterating my collection twice?
Given these relationships:
class Account < ActiveRecord::Base
has_many :employments
has_many :people, :through => :employments
accepts_nested_attributes_for :employmen …
1
vote
1answer
21 views
User configurable forms with php and mysql
An online application we are building (php & mysql) requires users to be able to create their own forms for data capture and record this data in a database, respecting the exis …
0
votes
2answers
30 views
changing button text in OpenFileDialog in C#.net
Does anyone knows how to change text on button in OpenFileDialog in Windows.Forms in C#.NET?
0
votes
1answer
13 views
How to include drupal form elements in a data table
I have a data table which is populated with data unrelated to drupal content (from a third party system). The data relates to photos which must be approved / flagged as inappropria …
0
votes
2answers
23 views
Cancelling Windows Forms Events
I have a windows form. It has a ComboBox and a DataGrid
I have a Leave event on my combobox and I have a double click event on my datagrid row
The idea is that on leaving the com …
0
votes
3answers
20 views
Hiding Checkbox & Assigning Value - Ruby on Rails - Easy Question…
I am trying to hide a checkbox and assign a default value of 1 such that the submit button only shows. Here is my form. Just wondering as the proper format as I am new to rails. I …
1
vote
4answers
163 views
How Do I Show A Final Form On Exiting In Delphi?
This should be a simple one for someone. I just can't figure out how to do it.
Upon exiting of my program, I want to hide the main form and make a final "Thank You" form appear on …
1
vote
2answers
42 views
CSS form layout question
I have the following element on my form:
<li>
<label class="fixed" for="Interests">Program genre interests:</label>
<label for="Sports"><%=Html. …
2
votes
4answers
48 views
How to switch from table to div for FORM layout?
I'm noticing most folks are talking about using DIVs and CSS for
label, textbox pairs. How would one convert a table such as:
<table>
<tr>
<td><some Label1&g …
0
votes
5answers
51 views
Submit with checkbox? No javascript
Is there any way to submit a form when a user clicks on a checkbox? Think of a todo list.
When the user clicks on the checkbox, it updates the todo entry in the database saying it …
0
votes
1answer
14 views
Using a file form field with a Java servlet
I am tring to retrieve a filename or the file itself for use in a java servlet (from a web form).
I have a file form field:
<form enctype="multipart/form-data" method="post" …
0
votes
2answers
35 views
Styling Forms Ruby on Rails 2 - Easy Question
I am new to Rails so this is probably an easy question but can't find anything that seems to explain it well.
How do I style forms in rails to. When I try to use the default styl …
0
votes
4answers
67 views
PHP form question.
How do you capture submitted values from a form and displayed them back on the page in the form fields using PHP? I have already created the form which is as follows:
<!DOCTYPE …
