active questions tagged validation - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T07:51:11Zhttp://stackoverflow.com/feeds/tag/validationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1445616/how-to-correctly-validate-linked-fields-in-silverlight-30how to correctly validate linked fields in Silverlight 3Rammesses2009-09-18T16:29:26Z2009-12-19T06:36:30Z
<p>My problem is with fields whose validation logic is linked - when Field A changes, how do I get Field B (which depends on it) to re-validate?</p>
<p>Here's a concrete example. Two DatePickers, one each for Start and End date, bound to the same data model object, as shown below.</p>
<pre><code>public class Model
{
private DateTime _startDate = DateTime.Now;
private DateTime _endDate = DateTime.Now;
public DateTime StartDate
{
get { return _startDate; }
[DebuggerStepThrough]
set
{
if (value < DateTime.Now)
throw new Exception("From date cannot be in the past");
_startDate = value;
}
}
public DateTime EndDate
{
get { return _endDate; }
[DebuggerStepThrough]
set
{
if (value < DateTime.Now)
throw new Exception("From date cannot be in the past");
if (value < FromDate)
throw new Exception("To date cannot be earlier than from date");
_endDate = value;
}
}
}
</code></pre>
<p>Notice that the dates default to "today".</p>
<p>Now, if I set EndDate to "tomorrow" using the bound DatePicker control, then no error is raised (as expected).</p>
<p>However, if I then set StartDate to be the day after tomorrow then a user would expect the EndDate field to become invalid - but no validation exception is raised because EndDate hasn't changed.</p>
<p>Am I missing something completely obvious? Is there a simple way to get the UI to re-validate itself?</p>
<p>Or is this (common) case just not handled?</p>
<p>I can't find anything on the net about this, of course. </p>
http://stackoverflow.com/questions/1932179/silverlight-validation-of-dependent-controls0Silverlight validation of dependent controls?David Austin2009-12-19T06:32:08Z2009-12-19T06:32:08Z
<p>Hi All,</p>
<p>I have Silverlight 3 application with two datepickers for Start Date and End Date.
They are data bound to a business object which implements validation logic such that the StartDate must be before the EndDate and the EndDate must be after the StartDate.</p>
<p>So far, so good - both controls display the appropriate validation error when a validation exception is thrown in the respective setter.</p>
<p>My problem is if the user changes the 'other' control such that the 'invalid' date in the first control is now valid, the first control's state does not change (because its setter has not been called).</p>
<p>For example, if I set StartDate to 15 Dec 2009 and EndDate to 10 Dec 2009, the EndDate control correctly goes into the invalid state. If the user changes the StartDate to 9 Dec 2009, the EndDate control is still marked as invalid because the UI has not called the EndDate setter.</p>
<p>Is there a 'clean' MVVM-style method of forcing the UI to revalidate?</p>
http://stackoverflow.com/questions/1826511/whats-the-pattern-for-design-time-validation-in-workflow-foundation-4-00What's the pattern for design-time validation in Workflow Foundation 4.0?Will2009-12-01T14:25:48Z2009-12-19T05:25:21Z
<p>I'm unclear about when and how I should be doing validation in my custom activities/custom activity factories/custom designers in WF 4.0. </p>
<p>The only place within my activity that seems to provide validation error support is within the <strong>CacheMetadata</strong> method (I believe this is called multiple times during the design process). Is this where I should be doing my validation? Is there support for validation within the ActivityDesigner?</p>
http://stackoverflow.com/questions/1931758/asp-net-mvc-error-validation0ASP.Net MVC Error ValidationBen2009-12-19T02:41:04Z2009-12-19T04:09:59Z
<p>I have an error validation issue with an int. </p>
<p>I have validation for a customer name:</p>
<pre><code>if (String.IsNullOrEmpty(CustomerName))
yield return new RuleViolation("Customer Name Required", "CustomerName");
</code></pre>
<p>now if I want to add validation for a city, in this case I have a CityID that gets saved as type int, so I can't write my if statement the same way...because there's no int.IsNullOrEmpty method. Let's say the user didn't select the dropdown for city - it's basically saving with no value.</p>
<p>What's the best way to write my validation statement for an int?</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses48What is the best regular expression for validating email addresses?acrosman2008-10-14T14:14:34Z2009-12-18T23:40:35Z
<p>Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is:</p>
<pre><code>^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$
</code></pre>
<p>I use this in several PHP programs, and it works most of the time. However, from time to time I get contacted by someone that is having trouble with a site that uses it, and I end up having to make some adjustment (most recently I realized that I wasn't allowing 4-character TLDs).</p>
<p><em>What's the best regular expression you have or have seen for validating emails?</em></p>
<p>I've seen several solutions that use functions that use several shorter expressions, but I'd rather have one long complex expression in a simple function instead of several short expression in a more complex function.</p>
http://stackoverflow.com/questions/1931146/form-check-with-js-select-at-least-one-checkbox-and-max-2-checkboxes0Form check with JS: select at least one checkbox and max 2 checkboxesPennywise832009-12-18T22:55:24Z2009-12-18T23:06:07Z
<p>Hi,
is there a way to validate a form through JS and check how many checkboxes are selected?
I have a list with 15 checkboxes and I want that the user check exactly 2 checkboxes.</p>
http://stackoverflow.com/questions/1899763/how-to-fire-xval-validation-when-the-data-of-text-is-generated-dynamically0How to fire xval validation when the data of text is generated dynamically?Nimesh2009-12-14T08:58:23Z2009-12-18T22:57:00Z
<p>Hi,
I do have three text box, where all are required field. which is tightly coupled with a model</p>
<p>Name* :
<br/>Age* :
<br/><strong>Check Button</strong>
<br/>Date* : //This is a hidden filed</p>
<p><strong>Continue Button</strong></p>
<p>When i click on continue button all the validation error messages will get displayed.
i am entering the Name and Age then click on Continue. then the validation should fire for click on check button before continuing.</p>
<p>if i click on check button,date will be generated, and the validation error message still will be displayed on the page until i click on continue button.</p>
<p>I just want to clear of the validation message when click on verfiy button. how can i do that.</p>
http://stackoverflow.com/questions/1927596/check-if-observablecollection-is-valid1Check if ObservableCollection is validMitch2009-12-18T11:14:51Z2009-12-18T14:50:23Z
<p>I have a WPF Dev Express DxGrid that is bound to an ObservableCollection in the following way.</p>
<pre><code>Private _FamilyList As New ObservableCollection(Of FamilyRecord)
MyGrid.DataSource = _FamilyList
</code></pre>
<p>When a user starts to enter information in the grid, I need to be able to check whether they have missed some information making it Invalid.</p>
<p>So, what is the best method of checking that the _FamilyList has no validation errors?</p>
http://stackoverflow.com/questions/1926075/custom-validation1Custom Validationandrew2009-12-18T03:21:46Z2009-12-18T12:58:29Z
<p>How are people doing their validations on data?</p>
<p>Basically I have a requirement that to apply for insurance you need to be over 14 years of age. </p>
<p>Now, on the application form you may need to not only enter your age but any nominated drivers date of births as well.</p>
<p>I went through the Nerd Dinner example and it works but I was wondering whether anyone is doing other types of validations.</p>
http://stackoverflow.com/questions/1816407/php-doctrine-validation0PHP Doctrine ValidationDan2009-11-29T18:57:22Z2009-12-18T12:50:21Z
<p>Hi,
I'm using doctrine and trying to validate some models.</p>
<p>I have the following in my YAML schema:</p>
<pre><code>User:
package: User
columns:
username:
type: string
notnull: true
notblank: true
minlength: 4
password:
type: string
notnull: true
</code></pre>
<p>If I create a new user, it always validates, regardless of what values I give it.</p>
<p>eg:</p>
<pre><code>$testuser = new User();
$testuser->username = ' ';
if ( ! $testuser->isValid())
{
echo 'User is invalid!';
}
</code></pre>
<p>EDIT:
The above is just an example. It still validates even if values specified as NOT NULL in the schema are omitted.</p>
<p>The invalid method is never produced. Does anyone know what might be causing this?
Any advice appreciated.
Thanks.</p>
http://stackoverflow.com/questions/1926374/sl3-dataform-validation-indicators-dont-show-in-tab-pages1SL3 dataform validation indicators don't show in tab pagesAli Shafai2009-12-18T05:00:43Z2009-12-18T12:16:34Z
<p>I have a Prism/SL3 application with a tab control and each page of the tab control is a "Region" that has its own view and viewModel. when I want to validate the main page, I call dataForm.ValidateItem(), then I go to all the child views and do the same. the problem is, only the pages which user has clicked on them (on the tab page), get instantiated and the pages that are never shown, don't have their view instantiated, thus I can't validate them.
any help?</p>
http://stackoverflow.com/questions/1922043/regression-testing-for-schema-xsd-equivalence1Regression testing for schema (xsd) equivalenceAndrzej Doyle2009-12-17T14:10:43Z2009-12-18T12:02:16Z
<p>Hi all,</p>
<p>I am thinking about rewriting a schema with lots of standalone complex types in it, into one where the complex types extend other base types more sensibly. The rationale for this is partly conceptual - because most of these types are specific instances of a domain object with a definite hierarchical structure - and partly practical, because we're using JAXB-generated classes to handle the XML reading logic and it's impossible to write methods for common functionality without either reflection or a lot of <code>instanceof</code> and casting. Bleh.</p>
<p>So my primary question is whether anyone is aware of a good way to test two XSD schemas for functional equivalence? If I perform this schema refactoring correctly, the set of documents considered valid should be exactly the same for the two schemas despite the fact the files themselves would be very different. This sounds like the kind of thing that a testing framework could help with; I know there are tools that will suggest test inputs for JUnit tests, and I was wondering whether there might be any tools to generate edge case XML documents to test for validity against the old and new schemata?</p>
<p>And as an aside - if this is a terrible idea (or if there are better alternatives), then stop me now. :-)</p>
<p>Thanks for your attention.</p>
http://stackoverflow.com/questions/1927553/jquery-validation-rule-for-contains0jquery validation rule for containsmonkeylee2009-12-18T11:06:18Z2009-12-18T11:21:33Z
<p>is there way to create a rule in the jquery validiation plugin that allows you to say not contains "value"?</p>
http://stackoverflow.com/questions/1927033/what-is-wrong-with-this-xsd0What is wrong with this xsd?Johan2009-12-18T08:36:59Z2009-12-18T08:43:54Z
<p>The following XSD should validate that the <code>favorite_fruit</code> element's <code>name</code> attribute should only contain <code>names</code> of <code>fruit</code> in the <code>fruits</code> element. Here is the XSD:</p>
<pre><code><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="Fruit">
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="FruitArray">
<xsd:sequence>
<xsd:element name="fruit" minOccurs="0" maxOccurs="unbounded" type="Fruit"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="fruit_basket">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="fruits" minOccurs="1" maxOccurs="1" type="FruitArray"/>
<xsd:element name="favourite_fruit" minOccurs="1" maxOccurs="1">
<xsd:complexType>
<xsd:attribute name="name" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:key name="fruit_lookup">
<xsd:selector xpath="fruits/fruit"/>
<xsd:field xpath="@name"/>
</xsd:key>
<xsd:keyref name="favourite_fruit_constraint" refer="fruit_lookup">
<xsd:selector xpath="favourite_fruit"/>
<xsd:field xpath="@name"/>
</xsd:keyref>
</xsd:element>
</xsd:schema>
</code></pre>
<p>The following xml should be valid but when validated is invalid:</p>
<pre><code><fruit_basket>
<fruits>
<fruit name="Apple"/>
<fruit name="Peach"/>
<fruit name="Bananna"/>
</fruits>
<favourite_fruit name="Apple"/>
</fruit_basket>
</code></pre>
<p>Any ideas? My gut feels is that there is something wrong with my xpath. PS: I am using lxml to validate the xml against the xsd.</p>
http://stackoverflow.com/questions/1926683/a-positive-number-from-1-to-231-1-in-regex1A positive number from 1 to 2^31 -1 in regexTanmoy2009-12-18T06:29:57Z2009-12-18T07:36:18Z
<p>Hi,</p>
<p>I got the following regex that almost does the work but does not exclude zero ...How to do that?</p>
<pre><code>^(\d|\d{1,9}|1\d{1,9}|20\d{8}|213\d{7}|2146\d{6}|21473\d{5}|214747\d{4}|2147482\d{3}|21474835\d{2}|214748364[0-7])$
</code></pre>
<p>Also can anybody explain a bit how this works?</p>
http://stackoverflow.com/questions/1926779/programmatically-adding-validation-control-to-asp-net-page1Programmatically adding validation control to asp.net pageIrfanRaza2009-12-18T07:07:57Z2009-12-18T07:32:48Z
<p>Hello friends,</p>
<p>I am trying to add a required fields validator programmatically in asp.net. But I get the following error message - Control 'req2' of type 'RequiredFieldValidator' must be placed inside a form tag with runat=server</p>
<p>The c# code i have used is below - </p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
RequiredFieldValidator rv = new RequiredFieldValidator();
rv.ID = "req2";
rv.ControlToValidate = "TextBox2";
rv.ErrorMessage = "Data Required";
this.Controls.Add(rv);
}
</code></pre>
<p>Could someone tell me whats gone wrong here?</p>
<p>Thanks for sharing your valuable time.</p>
http://stackoverflow.com/questions/690267/using-rails-validation-helpers-message-but-want-it-without-listing-the-column-na3Using Rails validation helpers :message but want it without listing the column name in messagedaustin7772009-03-27T15:40:41Z2009-12-17T23:35:44Z
<p>Using Rails validation helpers-</p>
<pre><code>validates_xxx_of :the_column, :message => "my message"
</code></pre>
<p>will generate a validation message :</p>
<p>*the_column my message*</p>
<p>Is there a way to turn-off the inclusion of the column name?
(substitute xxx with any validation helper method)</p>
http://stackoverflow.com/questions/1924457/struts-2s-inbuit-validations-on-list-items0Struts 2's inbuit Validations on List itemsunknown (google)2009-12-17T20:44:56Z2009-12-17T20:44:56Z
<pre><code><s:iterator value="listOfValues" status="row">
<s:textfield name="listOfVoObjects[${row.index}].itemId"/>
<s:textfield name="listOfVoObjects[${row.index}].itemName"/>
</s:iterator>
</code></pre>
<p>In this scenario, does anybody know how to do validations on each itemId and itemName in the listOfValues when the form is submitted using the XML validations in Struits2 ??</p>
<p>Thanks in Advance,
`A</p>
http://stackoverflow.com/questions/1923909/validating-c-base-class-constructor-parameter0Validating C# base class constructor parameterstevesyfuhs2009-12-17T19:09:32Z2009-12-17T19:21:10Z
<p>After running Code Analysis in VS2010 beta (FxCop for previous versions) I'm getting the following warning:</p>
<blockquote>
<p>In externally visible method
'Identity.Identity(WindowsIdentity)',
validate parameter 'windowsIdentity'
before using it.</p>
</blockquote>
<p>The constructor is:</p>
<pre><code>public Identity(WindowsIdentity windowsIdentity)
: base(windowsIdentity.Token)
{
init();
}
</code></pre>
<p>for a class defined as:</p>
<pre><code>public class Identity : WindowsIdentity
</code></pre>
<p>My question is, how do I validate the windowsIdentity parameter? Should I validate it in the constructor, and throw an exception, or is there a better way to call this?</p>
http://stackoverflow.com/questions/1923327/jquery-validation-with-select-and-text-input0JQuery Validation with Select and Text InputDavid Morton2009-12-17T17:31:51Z2009-12-17T17:48:25Z
<p>I'm having one heck of a time getting this validation to work. </p>
<p>I'm using the JQuery Validation framework found <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" rel="nofollow">here</a>, and I'm trying to validate a form that has both a select and an input as required fields. I've managed to simplify the problem down to a rather simple prototype that demonstrates the problem:</p>
<pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="ValidateTest._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server" action="javascript:alert('hi!');">
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="~/Scripts/jquery-1.3.2.min.js" />
<asp:ServiceReference Path="~/Scripts/jquery.validate.min.js" />
</Services>
</asp:ScriptManager>
<div>
<script type="text/javascript">
$(document).ready(function() {
$("#form1").validate();
});
</script>
<table>
<tr>
<td>
<select id="someselect" class="required">
<option></option>
<option value="value1">value1</option>
<option value="value2">value2</option>
<option value="value3">value3</option>
</select>
</td>
</tr>
<tr>
<td>
<input id="someinput" type="text" class="required" />
</td>
</tr>
<tr>
<td>
<input id="somesubmit" type="submit" class="submit" value="Submit" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
</code></pre>
<p>The text box validation is being completely ignored on submit. It seems that hitting the submit button only validates the select. </p>
<p>That being said, leaving the textbox blank will force the "This field is required" message to pop up, but when I hit submit, the form still submits. </p>
<p>What I'd like to see is obvious: both fields are required before submit. That's it. My guess is there's something really, really simple I'm just overlooking. </p>
http://stackoverflow.com/questions/1923053/how-do-i-use-the-asp-net-mvc-validationmessage-html-helper-inside-my-own-custom-h2How do I use the ASP.NET MVC ValidationMessage HTML Helper inside my own custom helper?FullOfQuestions2009-12-17T16:46:20Z2009-12-17T17:41:25Z
<p>Hi,</p>
<p>I am trying to create a custom HTML Helper that encapsulates some presentation logic because I have to reuse this logic a few times on the same page and maybe in the future.</p>
<p>If the user's address is in North America, then I want two text boxes to be displayed for the telephone number input, one for the area code and the other for the remainder of the number. If the address is outside of North America, then I want a single text box for the full number to be displayed.</p>
<p>The following code was working as intended for outputting the correct text boxes, however, as soon as I added the validation associated with each text box, I am now getting a NullReferenceException thrown from the ToString() call on the ValidationMessage Helper call (the ValidationMessage Helper is returning a null!!).</p>
<pre><code>public static string TelephoneNumberInputListItem(this HtmlHelper helper,
string country,
string northAmericanAreaCodeFormName,
string northAmericanAreaCode,
string northAmericanRemainingNumberFormName,
string northAmericanRemainingNumber,
string internationalFullNumberFormName,
string internationalFullNumber)
{
//set up the error message and styling
object errorHtmlAttributes = new { @class = "fError" };
string validationMessage = "*";
object htmlAttributes;
//start building our list item tag which includes our telephone number
//input and validation controls
TagBuilder listItemBuilder = new TagBuilder("li");
//determine based on the country specified if this should be a North
//American phone input form or an international one
if (isNorthAmericanCountry(country))
{
//add the text input controls
htmlAttributes = new { size = 3, maxlength = 3 };
listItemBuilder.InnerHtml = helper.TextBox(northAmericanAreaCodeFormName, northAmericanAreaCode, htmlAttributes).ToString();
htmlAttributes = new { size = 7, maxlength = 7 };
listItemBuilder.InnerHtml += helper.TextBox(northAmericanRemainingNumberFormName, northAmericanRemainingNumber, htmlAttributes).ToString();
//Add the Validation Message controls
listItemBuilder.InnerHtml += helper.ValidationMessage(northAmericanAreaCodeFormName, validationMessage, errorHtmlAttributes).ToString();
listItemBuilder.InnerHtml += helper.ValidationMessage(northAmericanRemainingNumberFormName, validationMessage, errorHtmlAttributes).ToString();
}
else
{
//add the text input control
htmlAttributes = new { size = 15, maxlength = 15 };
listItemBuilder.InnerHtml = helper.TextBox(internationalFullNumberFormName, internationalFullNumber, htmlAttributes).ToString();
//Add the Validation Message control
listItemBuilder.InnerHtml += helper.ValidationMessage(internationalFullNumberFormName, validationMessage, errorHtmlAttributes).ToString();
}
return listItemBuilder.ToString(TagRenderMode.Normal);
}
</code></pre>
<p>Can you please help me add the validation so that these input text boxes are still part of the overall form validation happening in the calling View? I should mention that putting the TextBox and ValidationMessage Helper directly in the View works correctly.</p>
<p>There is a lot of buzz for using HTML Helpers ("if there's an IF, use a helper" anyone?), but how are we supposed to use them if we can't add validation controls to the input controls we use.</p>
<p>Thank you in advance for your help.</p>
http://stackoverflow.com/questions/1359188/c-regular-expression-to-validate-a-date2C# Regular Expression to validate a date? Kettenbach2009-08-31T20:11:43Z2009-12-17T16:48:03Z
<p>I am trying to validate a date entered into a text box. There is an input mask on the textbox which forces input of xx/xx/xxxx. I am trying to use a regular expression validator to enforce that a correct date is entered. I am not skilled in RegEx bascially at all. My co-worker found this one on the internet but I can't really tell what it's doing.</p>
<p>Does this look right? Seems overly complicated...</p>
<pre><code>(^((((0[1-9])|([1-2][0-9])|(3[0-1]))|([1-9]))\x2F(((0[1-9])|(1[0-2]))|([1-9]))\x2F(([0-9]{2})|(((19)|([2]([0]{1})))([0-9]{2}))))$)
</code></pre>
<p>Does anyone know of a less complex expression that essentially does what I need? </p>
<p>Thanks,
~ck in San Diego</p>
http://stackoverflow.com/questions/1893310/validate-dom-manipulation-when-using-selenium4Validate DOM manipulation when using SeleniumPaul Biggar2009-12-12T12:45:33Z2009-12-17T16:36:39Z
<p>I'm using Selenium to test my application. A nice test would be that after every DOM manipulation I would validate the DOM. Is there a nice way to do this?</p>
<p>Obvious ways are:</p>
<ul>
<li>use some builtin Selenium function. Is there one?</li>
<li>get the HTML of the DOM after the manipulation and use a local validator. However, I can't see how to get the HTML for the current DOM from Selenium.</li>
<li>I could go through javascript somehow, either by adding a JS file while testing or through Selenium. But I'm not sure how to go about this. Thoughts?</li>
</ul>
http://stackoverflow.com/questions/1921284/can-i-use-a-the-value-of-a-variable-as-the-name-of-property-in-c0Can I use a the value of a variable as the name of property in c#?Ivor2009-12-17T11:59:54Z2009-12-17T16:11:39Z
<p>How do all!</p>
<p>I want to be able to access a value in a class using the variable passed to a procedure.</p>
<p>e.g. _results.projection[2].Current.FundDC to become something like</p>
<p>_results.projection[2].termId.varName</p>
<p>where termId can be Current, Future or Percent</p>
<p>and varName can be a large list :)</p>
<p>Any suggestions?</p>
<p>Answers on a postcard please :)</p>
http://stackoverflow.com/questions/1503638/jquery-validation1JQuery Validationrabashani2009-10-01T12:19:42Z2009-12-17T13:00:00Z
<pre><code>var formValidationRules = {
rules: {
password: {
required: true,
remote: '/account/delete'
}
},
messages: {
"password": { required: "Please enter your password", remote: "Invalid password, try again." }
}
};
</code></pre>
<p>I wrote such validation, but I found out the the Validation will check for each event for
the remote and the required.</p>
<p>I would like to perform such task only when submitting,
(no blur, no keyup) - what is the best way to do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1921082/rails-how-to-set-a-validation-to-occur-in-just-one-of-my-own-controller-methods0Rails - How to set a validation to occur in just one of my own controller methodsadam2009-12-17T11:20:39Z2009-12-17T11:53:52Z
<p>I have a password_reset_token field in my model and it just stores an authentication token which will be used to parse a reset password url. </p>
<p>It's going to be nil unless the forgot_password method in my controller is called. It's here the token is generated. </p>
<p>I want a validation to only run here otherwise every time I update a user object validations will complain about the empty token field.
How do I do that?</p>
http://stackoverflow.com/questions/1920887/asp-net-mvc-client-server-validation0ASP.Net MVC Client/Server validation ace2009-12-17T10:45:46Z2009-12-17T10:55:37Z
<p>Im trying to use the <a href="http://haacked.com/archive/2009/11/19/aspnetmvc2-custom-validation.aspx" rel="nofollow">example</a> from this site to do client site validation. Im trying to use the html form tag instead of the "Html.BeginForm()" but doing that disables the client side validation. Does EnableClientValidation only work with Html.BeginForm. What is the difference? </p>
<pre><code><%@ Page Language="C#" Inherits="ViewPage<ProductViewModel>" %>
<% Html.EnableClientValidation(); %>
<% using (Html.BeginForm()) { %>
<%= Html.TextBoxFor(m => m.Title) %>
<%= Html.ValidationMessageFor(m => m.Title) %>
<%= Html.TextBoxFor(m => m.Price) %>
<%= Html.ValidationMessageFor(m => m.Price) %>
<input type="submit" />
<% } %>
</code></pre>
http://stackoverflow.com/questions/860055/jquery-override-default-validation-error-message-display-css-popup-tooltip-like5jQuery override default validation error message display (Css) Popup/Tooltip likePhill Pafford2009-05-13T19:50:43Z2009-12-17T09:56:49Z
<p>I'm trying to over ride the default error message label with a div instead of a label. I have looked at <a href="http://stackoverflow.com/questions/309574/jquery-validation-how-to-not-display-errors-or-how-to-display-errors-as-a-toolt">this post</a> as well and get how to do it but my limitations with CSS are haunting me. How can I display this like some of these examples:</p>
<p><a href="http://www.dojotoolkit.org/book/dojo-book-0-9/part-2-dijit/form-validation-specialized-input/textbox-validating-currency-number" rel="nofollow">Example #1 (Dojo)</a> - Must type invalid input to see error display<br />
<a href="http://www.leigeber.com/2008/04/dynamic-inline-javascript-form-validation/" rel="nofollow">Example #2</a></p>
<p>Here is some example code that overrides the error label to a div element</p>
<pre><code>$(document).ready(function(){
$("#myForm").validate({
rules: {
"elem.1": {
required: true,
digits: true
},
"elem.2": {
required: true
}
},
errorElement: "div"
});
});
</code></pre>
<p>Now I'm at a loss on the css part but here it is:</p>
<pre><code>div.error {
position:absolute;
margin-top:-21px;
margin-left:150px;
border:2px solid #C0C097;
background-color:#fff;
color:white;
padding:3px;
text-align:left;
z-index:1;
color:#333333;
font:100% arial,helvetica,clean,sans-serif;
font-size:15px;
font-weight:bold;
}
</code></pre>
<p>UPDATE:</p>
<p>Okay I'm using this code now but the image and the placement on the popup is larger than the border, can this be adjusted to be dynamic is height?</p>
<pre><code>if (element.attr('type') == 'radio' || element.attr('type') == 'checkbox') {
element = element.parent();
offset = element.offset();
error.insertBefore(element)
error.addClass('message'); // add a class to the wrapper
error.css('position', 'absolute');
error.css('left', offset.left + element.outerWidth());
error.css('top', offset.top - (element.height() / 2)); // Not working for Radio, displays towards the bottom of the element. also need to test with checkbox
} else {
// Error placement for single elements
offset = element.offset();
error.insertBefore(element)
error.addClass('message'); // add a class to the wrapper
error.css('position', 'absolute');
error.css('left', offset.left + element.outerWidth());
error.css('top', offset.top - (element.height() / 2));
}
</code></pre>
<p>the css is the same as below (your css code)</p>
<p>Html</p>
<pre><code><span>
<input type="radio" class="checkbox" value="P" id="radio_P" name="radio_group_name"/>
<label for="radio_P">P</label>
<input type="radio" class="checkbox" value="S" id="radio_S" name="radio_group_name"/>
<label for="radio_S">S</label>
</span>
</code></pre>
http://stackoverflow.com/questions/1858117/flexible-numeric-string-parsing-in-python4Flexible numeric string parsing in PythonKevin Ivarsen2009-12-07T06:06:50Z2009-12-17T08:35:40Z
<p>Are there any Python libraries that help parse and validate numeric strings beyond what is supported by the built-in float() function? For example, in addition to simple numbers (1234.56) and scientific notation (3.2e15), I would like to be able to parse formats like:</p>
<ul>
<li>Numbers with commas: 2,147,483,647</li>
<li>Named large numbers: 5.5 billion</li>
<li>Fractions: 1/4</li>
</ul>
<p>I did a bit of searching and could not find anything, though I would be surprised if such a library did not already exist.</p>
http://stackoverflow.com/questions/747220/rails-validation-and-fieldwitherrors-wrapping-select-tags1Rails validation and 'fieldWithErrors' wrapping select tagsandi2009-04-14T12:01:08Z2009-12-17T07:18:59Z
<p>Is it normal behaviour to not get the <code><div class="fieldWithErrors"></code> wrapped arround select tags that have validation errors? I personally see no reason why the select tags should be treated differently than other form tags (input, textarea).</p>
<p>I <em>do</em> get the error in <code>error_messages_for</code> and <code>error_message_on</code> methods for that field.</p>
<p>PS. I have altered a bit the <code>ActionView::Base.field_error_proc</code> in order to get span tags instead of divs, but that isn't the problem.</p>
<pre><code>ActionView::Base.field_error_proc = Proc.new { |html_tag, instance|
#if I puts html_tag here I only get the <input> tags
"<span class=\"fieldWithErrors\">#{html_tag}</span>"
}
</code></pre>