Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
794 views

ExtJS 4 - Mark a red asterisk on an required field

I have this problem where I need to add a red asterisk beside a fieldLabel when a field is marked as "required" (or allowBlank: false) In ExtJS3, we can have this hack easily by overriding ...
2
votes
1answer
3k views

Required fields in flex

I've got a question about flex. I have a form and the email is required. I googled this and found the found the following solution: <mx:FormItem label="Email" id="emailFormItem" width="100%" ...
0
votes
0answers
53 views

How declare a relation Many-to-Many not required with Symfony2 and Doctrine2?

I have two PHP model classes named Question and SolutionMethod. A Category may have many Items and an Item may belong to many Categories. I have created a ManyToMany relation to both classes: class ...
0
votes
4answers
74 views

checking each required input for empty value with jQuery

I am checking for each required fields in a form. I tried this but it only works for the first input. How can I make it work for each input? if($('[required]').val() != ''){ ...
0
votes
1answer
36 views

Javascript jQuery required items in a survey

I'm building a multi-question survey where I'm using javascript to: make sure all survey questions displayed on a page are answered show an additional question on a page based on the answer to a ...
0
votes
1answer
97 views

MVC3 Required validation, choose value for empty

I have a hidden field which is bound to a int Id in the model, it has a required attribute and some fancy ajax code to set the id client side, the problem is that zero should be acounted as empty. Now ...
0
votes
1answer
113 views

Require form fields with php

Given the following code example, what would I need to add to the check_input function so that it deals with missing / required form fields. Basically, all I am trying to do is to show the end user an ...
0
votes
1answer
85 views

How to prevent form submission without required fields?

I am creating forms elements like this: $element = $this->CreateElement('select', 'countries'); $element->setLabel('Countries'); $element->setAttrib( 'required', true ); ...
0
votes
2answers
63 views

Required fields not met when closing window

I'm looking for the best way to go about "forcing" the user to fill a textarea. For my work we have a system that keeps track of time spent on a particular "task". Some tasks are required to have a ...
0
votes
3answers
343 views

Although not [required] List field shows up as required and Model State is not Valid due to it being null?

I have the following code- View- <% Html.BeginForm(); %> <div> <%= Html.DropDownList("DropDownSelectList", new SelectList( Model.DropDownSelectList, "Value", "Text"))%> ...
0
votes
2answers
4k views

Android: need to validate an edittext for non-blank input

If I want to enforce a maximum length of input in an EditText field, I can use the maxLength attribute. But if I want to enforce a minimum length (in my case, simply non-blank), I find no ...
0
votes
1answer
353 views

Filename shows as a Required field in a Document Library in Sharepoint 2007

Ok, so got a stumped scenario. On a Sharepoint MOSS 2007 site, somebody messed around with the settings of a Document Library. You try and upload multiple documents to the document library and it ...
0
votes
2answers
284 views

Django field required in a clean method in a form class

I want to redefine the required attribute for a field in a clean method of my form file: class NewUserFullForm(NewUserForm): REGEX_PHONE = '^(\+[0-9]{2})[ \.\-]?[0-9][ \.\-]?[0-9]{2}[ ...