Tagged Questions
The required tag has no wiki summary.
9
votes
4answers
899 views
Can I apply the required attribute to <select> fields in HTML5?
How can I check if a user has selected something from a <select> field in HTML5?
I see <select> doesn't support the new required attribute... do I have to use JavaScript then? Or is there ...
7
votes
5answers
5k views
How do you specify a required switch (not argument) with Ruby OptionParser?
Say I'm writing a script and I want to require a --host switch (with value of course) but if the --host switch isn't specified I want the option parsing to fail. I can't seem to figure out how to do ...
6
votes
3answers
1k views
Required and Optional Arguments Using Boost Library Program Options
I'm using Boost Program Options Library to parse the command line arguments.
I have the following requirements:
Once "help" is provided, all the other options are optional;
Once "help" is not ...
4
votes
1answer
50 views
Styling for <input required …> in WebKit
Please take a look at this example in Chrome browser: http://jsfiddle.net/ymzTB/
<form>
<input required type = "text" >
<input type = "submit" >
</form>
When you ...
4
votes
4answers
2k views
Styling the hint on a HTML5 input field using required attribute
Is it possible to style the hint that appears on a HTML5 input field when using the required attribute. If you're not sure what I'm talking about click submit on this form without filling anything in. ...
3
votes
3answers
40 views
Record which files are part of an execution? (included, required, classloaded)
[This is a code coverage question, only that I hope to use it in production with the aim of pinpointing code that can be deleted.]
Is it possible to somehow record which files are part of an ...
3
votes
2answers
91 views
Perl: how to make variables from requiring script available in required script
example
out.pl:
(my|our|local|global|whatever???) var = "test";
require("inside.pm");
inside.pm:
print $var;
I don't want to use packages - it's overwhelming my needs :)
thanks!
3
votes
2answers
673 views
Firefox 4 : Is there a way to remove the red border in a required form input?
When required is defined in a form field, Firefox 4 automatically shows a red border to this element, even BEFORE the user hit the submit button.
<input type="text" name="example" value="This is ...
3
votes
5answers
119 views
Require HTML5 to use a website
Theoretically, could you detect if a browser supports HTML5 and prompt the visitor to upgrade to IE9/Firefox/Chrome/Safari/Opera if it doesn't support some features like CSS3 or audio/video tags?
I'm ...
3
votes
1answer
135 views
How to serialize a [required] attribute with a custom init_arg using MooseX::Storage?
I'm trying to add serialization to a Moose class that has required attributes using custom init_arg's (to prefix the attribute name with a dash for API consistency) and it seems that this causes ...
3
votes
2answers
408 views
Basic Authentication Required Dialog
For starters; Im not so literate in coding.
I am pretty interested in a script on how to trigger/ or throw a Basic/Standard "Authentication Required" Dialog on a specific directory or site and the ...
2
votes
4answers
27 views
HTML - Forms, two text inputs. required attribute. How to, user must enter string in either of the two fields to submit?
I am having trouble trying to find a solution for this, without resorting to a php statement, or javascript. This is as the idea seems so simple, that i am pretty sure there must be a way to do this ...
2
votes
2answers
47 views
JQuery validation plugin require email in certain cases
I have a member management page where the client wants a field to be always required and if the user is a member, then it must be an email address. If the account is for an admin, it does not have to ...
2
votes
0answers
404 views
@XmlElement(required=true) for @WebParam does not work
I'm building web service using JAX-WS. I have a strange problem that the annotation @XmlElement(required=true) for @WebParam works in some @WebService class, but doesn't work in some others.
I have ...
2
votes
1answer
75 views
CCK Field, minimum number of values
I have created a module which implements a CCK field. When adding the field to a content type, I have set the number of values to unlimited, and set the field to be required.
Is there a way to set ...
2
votes
3answers
171 views
WPF: Is there a sort of XAML tag that behaves like the HTML span element?
Coming from ASP.NET, this WPF stuff is just confusing. All I want to do is put a red asterisk by a label to indicate a required field. Playing around with stuff, I found that this actually does the ...
2
votes
4answers
82 views
How to examine required libraries?
I developing a web application with a lot of libraries like, Spring, Apache CXF, Hibernate, Apache Axis, Apache Common and so one. Each of these framework comes with a lot of *.jar libraries.
For ...
2
votes
3answers
222 views
Javascript: Where is the error IE is finding in this script?
IE continues to give me an error on the next-to-last line stating "Object required". I am not sure where the issue would be. Any advice?
function showdiv()
{
...
1
vote
0answers
67 views
ASP .NET MVC 3 Validation unobtrusive - Evaluation order of the validation rules
I have created a custom ValidationAttribute "RequiredIf", to determinate wether a field is empty or not according to another field. I have created the adapter and I have added the method.
Here is the ...
1
vote
1answer
42 views
facebook like button not implemented correctly
i have implemented fb like button using iframe code
when i click like button it increases count on the current page but count not on fb account for which it is made
& when someone likes it like ...
1
vote
2answers
52 views
Is the 'as' keyword required in Oracle to define an alias?
Is the 'AS' keyword required in Oracle to define an alias name for a column in a SELECT statement?
I noticed that
SELECT column_name AS "alias"
is the same as
SELECT column_name "alias"
I am ...
1
vote
1answer
116 views
Why does <h:inputText required=“true”> allow blank spaces?
When I set required="true" in a <h:inputText>, it still allows blank spaces. I have been trying to modify the jsf-api.jar but I could not understand how to generate new JAR so I tried to modify ...
1
vote
1answer
37 views
1
vote
4answers
142 views
Server side validation in asp.net MVC 3 with entity framework
I am using asp.net MVC3 with Enitity frameword. both are communicating via WCF web service.
the problem is that , at the server side DB developers don't want to set the [Required]/[Range] attributes ...
1
vote
2answers
180 views
mvc dropdownlistfor not marked as required but is still required
I have dropdownlistfor in cshtml file:
var kategorie_wlasna = new SelectList((from z in Model.Kategoria where !formReadOnly || z.Id == Model.KategoriaWlasnaId select z), "Id", "Nazwa");
...
...
1
vote
0answers
385 views
Deleting “Method in protocol not implemented” warnings [closed]
Imagine you want to declare a new protocol and define a default behavior for it by implementing its methods on a "base" class.
If you don't own the implementation files for this class (e.g. NSObject), ...
1
vote
1answer
51 views
Required custom Property
I create a custom db.Property subclass:
class PropertyFoo(db.StringProperty):
def validate(self, value):
# Yes this is a pointless validator, but please read on
return value
def ...
1
vote
1answer
237 views
wpf idataerrorinfo combobox
I have a simple view and viewmodel with the latter implementing IDdataErrorInfo and IValidationExceptionHandler. The view contains a combobox with its ItemsSource bound to an collection with ...
1
vote
2answers
374 views
Removing REQUIRED Attribute from Class but MVC3 will NOT post the form without a value in the text box… Please HELP!
I have a class. At one point, I had set the properties of the class to [Required] using System.ComponentModel....
Okay, then I realized this was not needed. I have removed the required property ...
1
vote
1answer
84 views
HTML5 Required attribute not enforced on FormObject.submit()
HTML5 makes it easy to enforce an input to have a value: wow! This would be great in a .NET web application. I made a quick implementation of this and noticed something interesting. My newly-required ...
1
vote
2answers
187 views
Required field display error message on form
I have a form that I need to have required fields filled out. I know to use the code below to verify if the field is blank:
<?php
if (!empty($_POST['client_name'])) {
echo '<p ...
1
vote
2answers
221 views
rails simple_form gives dots under stars for required fields, better way to remove them?
In many of my projects I use simple_form and love it.
However one really strange quirk that I find is that I get 3 small dots underneath the * it supplies for required fields.
I have to get around it ...
1
vote
1answer
97 views
Can an xsd:enumeration tag be made mandatory/required?
Short-form question: Can an xsd:enumeration tag have a required attribute, as in any tag that uses this enumeration MUST use the specific enumeration value at least once?
Details: For example, let's ...
1
vote
1answer
212 views
How to get browsers to selectively ignore HTML5 required attribute on forms
I've got a standard HTML form, which is split into two sections using fieldset elements. One section is to enter name, email address etc and the second section is to enter the postcode for an address ...
1
vote
2answers
133 views
Django Template field.is_required Work Around
I have a django form that I'm outputing no problem.
My question is with regard to jQuery Validation.
I want to apply jQuery validation to inputs that are required.
I'm using ...
1
vote
2answers
986 views
How to allow null value in required nullable DateTime in .NET MVC3 HTML form?
I have tried:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}", ConvertEmptyStringToNull = true)]
[Required(AllowEmptyStrings = true)]
public DateTime? BirthDateFrom { ...
1
vote
3answers
657 views
GCC error when compiling: “lvalue required as left operand of assignment” with function pointer
I have a C code which records a procedure address in an array
void* lpProcAddress[5];
typedef unsigned long (*MyFunction_TYPE) (void*);
#define MyFunctionInArray ( (MyFunction_TYPE) lpProcAddress[0] ...
1
vote
1answer
278 views
Make a h:inputText required only when the checkbox is selected
I have a datatable with rows containing some input text fields that are required. Each row also has a check box called delete. I want to have the required = true only when the check box is selected. ...
1
vote
2answers
253 views
How can I cross-browser detect input fields with the 'required' attribute in jQuery?
I am running into a slight validation issue with the Boolean required attribute on form fields.
I am marking up my fields as such:
<label for="email">Email Address:</label>
<input ...
1
vote
4answers
348 views
Custom Attribute in C# : How to create an Attribute which defines several other Attributes?
I've the following Attributes defined on my Name field:
[Required(ErrorMessageResourceName = "ValidationErrorRequiredField", ErrorMessageResourceType = typeof(MyResources))]
[Display(Order = 0, Name ...
1
vote
4answers
1k views
PHP: check if any posted vars are empty - form: all fields required
Is there a simpler function to something like this:
if (isset($_POST['Submit'])) {
if ($_POST['login'] == "" || $_POST['password'] == "" || $_POST['confirm'] == "" || $_POST['name'] == "" || ...
1
vote
1answer
715 views
Jquery validate: re-validate a validated form after checkbox changed with different rules
I am trying to validate a form with a couple of elements being required if a checkbox is NOT checked.
Now if I submit the form the rules fire - and then I check the checkbox on - the validation ...
0
votes
0answers
38 views
Value for External Accessory of “Required background modes” key in iOS5
I read iOS Programming Guide, and I found not only "audio, location, voip", but also "External Accessory & Newsstand apps" are allowed in background mode. documents are as following:
In iOS, only ...
0
votes
0answers
43 views
UIWebView SSL Client Certificat is required
I am trying to use UIWebView with Client Authentication Certificat.
I use this delegate of webview that allow use auth challenge :
(BOOL)webView:(UIWebView *)webView ...
0
votes
0answers
19 views
nginx required modules under specific circumstances [closed]
i want to install nginx with only required modules according to my condition.
well i have a typical php, mysql website. so fastcgi is needed, no SSL,no load balancing.
so what modules are essential ...
0
votes
0answers
38 views
asp.net iis server red asterisk page validation
I'm getting a strange error with my ASP.NET website.
I'm developping with C#, Asp.Net and Visual Studio. When developping and starting my website with Visual Studio (Ctrl+F5), VS starts its own web ...
0
votes
1answer
55 views
Can I allow a ruby script read access to a file but not the user invoking the script?
I have installed a ruby script (script.rb) on a Linux system that 'requires' another file (required.rb) with a bunch of custom methods.
I do not want to let my users read required.rb.
If i remove ...
0
votes
2answers
26 views
HTML 5 require either input fields
Lets say I have two input fields
<input id='intput1' type='text' />
<input id='intput2' type='text' />
Can I use the html 5 attribute required to specify that either input1 or input2 ...
0
votes
1answer
128 views
Spring form tag and HTML 5 still incompatible?
I am using a spring form tag
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<form:input path="name.lastName" cssClass="text" maxlength="30"/>
When I try to ...
0
votes
0answers
73 views
dojo validation of a textarea
I'm attempting to use dojo for the first time, so this may be be obvious.
I have a very simple form with one textarea in it that needs to be filled in.
<form id='form1' action="" method="" ...