Tagged Questions

0
votes
1answer
6 views

xVal Client side Validation with validation Callout

Im using MVC data annotation with xVal Client Validation on a form. How do I implement something like the a asp.net validation callout extender instead of display red error messages.
1
vote
2answers
25 views

Jquery validation don’t hide the error message when value is valid

I wrote a decimal validation method to validate the text in a texbox: $.validator.addMethod("decimalCheck", function(value) { var v = new RegExp("^\d*[0-9](\.\d*[0-9])?$", "g"); …
1
vote
1answer
59 views

How to do a “backwards” regular expression search and extract

I have a bunch of URLs to parse in PHP, like this: www.example.com/shopping shopping.example.com example.com/pages/shopping for about 100 different pages (not just shopping - some are contact, …
1
vote
3answers
58 views

ASP.NET File upload - Validation

In our application , we are using asp.net FileUpload control to upload files. Requirement is , user should be able to upload only ".doc, .xls , .pdf" files. System should not allow him to upload …
0
votes
0answers
6 views

Validation Runner for Castle (or NHibernate) with Buddy Class Support

I'm using the wonderful xVal library for setting up client side validation of rules defined server side in ASP.NET MVC. In my implementation I need buddy classes since I'm extending classes already …
1
vote
2answers
70 views

JQuery Validation

var formValidationRules = { rules: { password: { required: true, remote: '/account/delete' } }, messages: { "password": { required: "Please enter your password", remote: "Invalid …
2
votes
1answer
42 views

How can I skip email validation with Authlogic in Rails?

I use Authlogic for authentication in my Rails project. It provide default validation for email and login field. But, I want to allow email to be null for join because my service is for mobile and …
0
votes
1answer
113 views

Looking for a Example using nhibernate validation with WPF

I have a library that was written using nHibernate and I am trying to connect it to a WPF application. Looking for a way to integrate the validation without tightly coupling the code... Any …
1
vote
3answers
22 views

Using duplicate asp.net control IDs in different conditional blocks / validators

Hi, I have an asp page that renders controls based on a Request parameter. Simplified example: <% if (Request.QueryString["personType"] == "D") { %> <asp:TextBox ID="TextBoxName" …
1
vote
4answers
2k views

Validating with an XML schema in Python

I have an XML file and an XML schema in another file and I'd like to validate that my XML file adheres to the schema. How do I do this in Python? I'd prefer something using the standard library, but …
0
votes
1answer
10 views

cakephp validation

i use validation in model like this 'email' => array( //'UniqueMail'=>array('rule' => array('checkEmailUnique', 'email' ),'message' => 'mail is used'), 'email'=>array('rule' …
2
votes
3answers
113 views
+100

Custom ASP.NET MVC validation summary for address fields

I'm trying to figure out the best way to validate a one page checkout. It contains : ship address billing address etc. the Address class obvious contains First Name, Last Name, Street1, Street2, …
0
votes
4answers
57 views

ASP.Net MVC Error Validation

I have an error validation issue with an int. I have validation for a customer name: if (String.IsNullOrEmpty(CustomerName)) yield return new RuleViolation("Customer Name Required", …
0
votes
1answer
25 views

ASP.Net MVC Error Validation - How to display validation message when passing a custom view model to a view

I have been adding error and business validation to my app, and when I test using a view that was strongly typed to one model, let's say locations, I get the validation summary as well as the …
0
votes
2answers
51 views

ASP.NET MVC User Messaging Implementation

Ok, let's say your view has four partials (each with seperate viewmodels) that are all tied to the main viewmodel. You hit submit and all your data posts up. You run some server side validation and …

1 2 3 4 5 107 next
15 30 50 per page