The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

Keep form data after errors on basic Shopify contact form

I have added a basic contact form as described in Shopify Documentation. My code: {% form 'contact' %} {% if form.posted_successfully? %} <div class="successForm feedback"> <p>Thanks ...
3
votes
1answer
62 views

JS - jQuery dynamically add and remove fields

I am trying to make a dynamically duplicated field with jQuery : The HTML (PHP) code : <div id="widget_dup"> <p> <textarea class="code" cols="50" rows="5" ...
0
votes
3answers
108 views

HTML / PHP - Textarea shows tabs / spaces from code

For readability reasons , I have a code that looks like this : <textarea cols="50" rows="5" id="k99_brsa_settings[brsa_keep_settings_exp]" ...
0
votes
1answer
94 views

How to fill the fields of a form from database when we call to the jsp page using JSTL and EL

I have a jsp page which contains an html form. This form have a dropdown box which is filled with list of users. This list comes from database table. Previously I to fill this list I was using jsp ...
1
vote
1answer
190 views

How to stop text highlight in HTML form fields

After spending some time on Google I came here to get solution. What I have to do is to stop the text highlight of an input field(HTML form fields) when user select using cursor. If user tries to ...
0
votes
1answer
64 views

Django: How to write a clean method for a field that allows mutiple file uploads?

I have a form for uploading images. If I follow Django's standard for cleaning a specific field attribute of a form, this is what my clean method would typically look like: class ...
1
vote
1answer
431 views

Is it possible to update form fields in Word Document via script

This one could likely raise a lot of questions, so I will try to be as specific as possible. I am in charge of supporting a third party application that my job uses. One of the functions that this ...
0
votes
1answer
323 views

Extract Editable Fields from a PDF in Objective-C

I've been researching working with PDFs in my iOS app for a while now. I've figured out a few pieces of the puzzle like scanning for operators and displaying the PDF in a UIWebView. However, what I ...
0
votes
1answer
68 views

how can i check if a field is a textarea

i know about the form field method is_checkbox that is used to check if a field of a given django form is a checkbox or not. Is there any method to check if the field is a textarea? i have tried ...
0
votes
1answer
122 views

Validate a dynamic select field in Django

I'm using Django 1.4 with Python 2.7 on Ubuntu 12.10. I have a form where I need to populate a few drop-downs dynamically (using jQuery) but need 2 of them to be required and the 3rd to be optional. ...
0
votes
1answer
102 views

Result of a FormField returns empty in macro after value entered in word template

I have a Microsoft Word 2010 Template file with several FormFields on it. There are three at the top for Project Name, Project Location, and Project Number. I intend to intercept the FileSave ...
0
votes
1answer
102 views

What's the best way to do form field validations for phone numbers in Rails view without using a model?

I have the following form field in my index.html.erb view: <%= form_tag("/calls/call", :method => "post") do %> <br /> <%= text_field_tag(:call_to, "Number to call") %> ...
0
votes
2answers
342 views

Add field for a 10 digit number in user registration form in Drupal 7

My user registration form has a field for contact number (mobile number) which is 10 digits long. I used a normal integer field which gives me "Out of range" error PDOException: SQLSTATE[22003]: ...
0
votes
1answer
143 views

How to render HTML form fields and run Java code in background simultaneously in JSP

I have made a JSP page that has form fields and java code in scriplets .I have imported the java code in JSP page and made object to call the function of that java class. When i execute the JSP, the ...
2
votes
1answer
319 views

Django: Display NullBooleanField as Radio and default to None

I am successfully implementing NullBooleanField as radio buttons in several ways but the problem is that I can not set the default value to None. Here is the code: models.py: class ...
0
votes
3answers
87 views

Dropdown missing some values

I have a select-input-field which works well, but some Users are not in this list, allthough the database looks good and i have no conditions. I combine the option-texts with a $virtualFields which ...
2
votes
1answer
242 views

MS-Access Avoid Importing Null Fields from Form Field Word Document

I am trying to import fields from a form field word document I have created into a MS-Access table. The import works fine unless there is a null in one of the date fields, and then it throws a type ...
1
vote
2answers
803 views

Retrieve specific column from database and display on screen using CodeIgniter

I have a database table called input_types with a various input types: [id] [input_type_Name] 1 text 2 radio 3 checkbox 4 select ... ... I want to retrieve the names from the ...
0
votes
1answer
48 views

How to make a nested field with mixed type options?

I'm making a website to manage some kind of schedule. I looked into calendars and the like and found this form from google's calendar to be quite what I want. The thing is I'm having a hard time ...
2
votes
2answers
104 views

in MVC, how to verify reliability of submitted form hidden fields?

In mvc, when submitted to a controller, how can I verify that a user hasn't maliciously changed readonly hidden form fields?
0
votes
1answer
606 views

Symfony 2 form field - image preview instead of file path

I write an application with Symfony 2. I have a form which has a file field. When there is no file chosen the view is a button of "choose file" and on the right of it text 'No file chosen'. When i ...
0
votes
0answers
111 views

Passing GPS coordinate data to web based form fields

I was wondering if someone could point me in the right direction in order to get me started. Is there an existing API out there that would enable me to capture GPS data on the fly and pass that data ...
-3
votes
3answers
96 views

Converting javascript function to jquery [closed]

I have this function I am using to create a drop down menu in a form. //Formfield Function function makeCategory(){ var formTag = $("form"), selectLi = $('select'), ...
0
votes
1answer
260 views

ExtJs - Allowing user to modify position of form fields using drag and drop

We have been developing our application using ExtJs 4.0.7, and now we have a new feature request which will allow user to set the position of form fields, as per his choice, using drag and drop. For ...
0
votes
0answers
71 views

Form field data is being truncated on re load

I am having problems with some form fields being re loaded from my mysql database. I currently have the field type set to decimal 10,4 this seems to save the data correctly so if I type in 1.3453 it ...
0
votes
1answer
117 views

PHP: Form Field Heights changing when I echo an error message

I am processing a form at the top of my page before the html header and all: if ($_POST['submit']) {--the code--} If the person enters the wrong code the following php is executed: echo "<div ...
1
vote
2answers
872 views

jQuery - can I fill form inputs from a serialized form string?

Given that I have some form on a page, I know I can get a unicode serialized string using var query = jQuery('#some-form').serialize(); It's also possible setting the value of each input with ...
0
votes
2answers
1k views

Passing array via hidden fields to rails

i have a hidden_tag like this in my form <%= f.hidden_field :loc , {:multiple => true} %> which renders to <input id="business_loc" multiple="multiple" name="business[loc][]" ...
1
vote
1answer
185 views

trying to generate more file upload fields with unique names using javascript

I've managed to create a button that adds a file upload field, a button that removes a file upload field, and a counter that keeps track of the total number of file upload fields. The problem is that ...
1
vote
2answers
237 views

Conditionally show and hide a form field and set the field value

I have a form in my Django that looks something like this: class PersonnelForm(forms.Form): """ Form for creating a new personnel. """ username = forms.RegexField( ...
1
vote
1answer
778 views

Exclude some form fields while rendering in django-templates

I have a code block in order to render the form fields in my template such that {% for field in form.visible_fields %} <div class="field_container"> <div class="field_label question"> ...
0
votes
1answer
90 views

how can I create a span element in form class in symfony 1.4

Is there any way to add custom form-field element in the form class? i.e. I want to add a span element just after the email element in the UsersForm class. Here is the code class UsersForm extends ...
2
votes
2answers
1k views

Unable to read form field in servlet

Hey I am quite new to servlet environment. Here I am trying to post a form to my servlet with something like this: <form action="OnlineExam?q=saveQuestion" method="post" ...
0
votes
2answers
544 views

How can you manually render a form field with its initial value set?

I'm trying to render a form's fields manually so that my designer colleagues could manipulate the input elements within the HTML instead of struggling in Python source. ie. Instead of declaring form ...
1
vote
2answers
2k views

Using Javascript to Open a New Page and Populate Form Values There

I am using JavaScript in a bookmarklet to populate form elements on a website: javascript:var f = document.forms[0]; f.getElementsByTagName('input')[0].value = 'myname'; ...
0
votes
0answers
201 views

SmartyPants-PHP not working for string's submitted by post/get?

Finally gave up on my own pretty-quotes function to use SmartyPants-PHP's one-stop SmartyPants() ... except it seems that it doesn't do pretty curly-quotes (just straight quotes) for strings submitted ...
2
votes
3answers
228 views

Conditionally skip form fields from submission, Reduce URL clutter

I have multiple hidden form fields which store values about the the current view (e.g. if certain, normally hidden div's are visible etc.) to restore the layout when the form posts back. The problem ...