The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
39 views

JQuery Validator plugin: Remote call not working

I'm trying to validate an user name with a remote validation. here is the js code $('#form_reg').validate({ rules: { username: { minlength: 6, required: true, remote: ...
0
votes
0answers
43 views

Remote validator, validate user using a model that inherit from interface ASP.NET MVC

I am new using ASP.NET MVC. I want to validate if the user exists using the remote attribute and I want to reuse the same method. I want to save this in 2 tables in my database first one ...
1
vote
0answers
202 views

ASP.NET MVC4 - Remote validation on a collection object

I'm at my wit's end trying to figure out a way to make this work. I have an ASP.NET MVC4 View which is strongly typed to a ViewModel which contains a number of collection objects. One of those objects ...
0
votes
1answer
173 views

MVC3 Remote Validation with DataAnnotationsModelValidator adapter

I want to validate various telephone number properties on a DTO property of my model using a custom DataAnnotationsAttribute. I don't want to duplicate the DataAnnotations onto ViewModels, to keep ...
0
votes
2answers
301 views

jquery validate remote validation only works if field is changed

<?PHP $attributes = array('class' => "profile_form", 'id' => "profile_form",'name'=>"profile_form"); echo form_open_multipart("$form_action",$attributes); ?> <LABEL ...
1
vote
3answers
93 views

Remote validation doesn't pass data to action

I have model: public class MyModel ...fields [Remote(ActionName, ControllerName)] public string SomeNumber { get; set; } ..fields And have a action in ControllerName controller: public JsonResult ...
0
votes
1answer
74 views

Using remote validation to check that a field has a value not firing if field has no value

I have received a directive from a superior to use Remote Validation instead of a RequiredIf attribute for checking that a certain field has a value if it is able to be user edited. Right now, my ...
0
votes
0answers
181 views

MVC 4 remote validation settings

I use remote validation in my edit view. It works fine and detects whenever I edit the field content and its value is equal to the one existing in database. However, it is an edit view, so other ...
1
vote
0answers
159 views

Remote validation on MVC3 is trigger on keypress/keyrelease instead on lostfocus

I'm trying Remote validation on MVC3 for an user name input text on a register form, everything work ok except that I'm expecting the remote validation trigger when the input lost focus but it is ...
1
vote
2answers
1k views

How to Remote validate email or check if email exists

I am trying to check if Email exists at registration so that there are no duplicate emails in the database. I am doing this with the MVC4 default Internet Application but i have added an Email field ...
0
votes
2answers
405 views

jQuery Remote validation for multiple fields

I have a form with two fields User ID and Email ID. I am trying to validate value of each field is already taken or not using same php file with jQuery remote validation. But my confusion is how ...
4
votes
3answers
1k views

ASP.NET MVC RemoteAttribute validation not working - Action not being executed

I've been pulling my hair out trying to figure out why ValidationController actions are not being triggered. I have settings enabled in project-wide web.config: <add key="ClientValidationEnabled" ...
0
votes
1answer
197 views

Remote validation not work

I have View: @model MvcApplication2.Models.HomeModel @{ ViewBag.Title = "Home"; } <h2>Home</h2> <a>Witaj</a> @Model.UserName @using (Html.BeginForm()) { ...
1
vote
0answers
219 views

Need help writing a validation method to check if a video URL is allowed and if the video on the site actually exists using oEmbed

I'm having a difficult time trying to add a validator method to check not only if a URL is allowed (from YouTube or Vimeo using a regex string), but also if the video actually exists on the sites and ...
0
votes
1answer
446 views

Is server-side validation an appropriate use of ASP.NET WebAPI ApiController action

Before WebAPI, I did all client-side remote validation calls using regular MVC action methods. With WebAPI, I can now have POST, PUT, DELETE, and GET methods on an ApiController. However, validation ...
1
vote
1answer
67 views

rails begginer- validations [closed]

I created a remote validator (OwnemailValidator) based on an example. Idea is - when I enter value in field email (model Delegateuser) I need to check if the entered email is the email of a currently ...
1
vote
0answers
193 views

Remote Validation OnBlur and Empty String

I have a view model with remote validation enabled. In my view I also disabled OnKeyUp $(function() { $.validator.setDefaults({ onkeyup: false }); }) But if I focus on the text box, ...
1
vote
5answers
558 views

MVC Remote validation, parameter is null

public class UserModel { public LogOnModel LogOnModel { get; private set; } public RegisterModel RegisterModel { get; private set; } } in my RegisterModel I have email ...
0
votes
1answer
145 views

Remote validation attribute in MVC3 invalid get format

I trying to use remote validation for the first time, but am encountering problems with the parameters passed inot the remote validation method. My model is as follows: public class ...
1
vote
1answer
167 views

MVC3 Managing Remote Validation Exception

i have the following problem: i'm using remote validation for validate a field and now i'm trying to manage exception public class ValidationController : Controller { List<string> values = ...
0
votes
1answer
174 views

How to handle Remote Attributes on Model Edit? ASP.Net MVC3

I'm using Remote Attribute in my Model to check duplicate Page Titles as follows public class Page { [Remote("CheckDuplicate", "Page", ErrorMessage = "Title already taken")] public string Title { ...
0
votes
0answers
62 views

How do I create a remote validation code which is reusable

I need to create the same remote validation on 50 properties. I have added this remote validation [DropDownSelected("PCP")] public Guid ProIdentifier { get; set; } and I need to Use this code for ...
0
votes
1answer
171 views

Remote validation not working for guid

[Remote("DropDownSelected", "Patient")] public Guid SexIdentifier { get; set; } public ActionResult DropDownSelected(object value) { var x = ((Guid)value).ToString(); string xsd = ...
0
votes
1answer
389 views

Remote Validation works on textbox lost focus, but the ModelState.IsValid is always true

I have a model with RemoteValidation Attribute. When I enter "test" which already exists in the database and I click on an area except the OK button then I get in red colors: "test already exists." ...
3
votes
0answers
278 views

jQuery validation group with Remote Validation MVC 3

I want to validate a date of birth with a RemoteValidation/jQuery from 3 selectors. I want to check if a user is 18 or older. But atm i'm having some trouble to group them so they are invalid/valid ...
1
vote
2answers
190 views

Parameter Name in Remote Model Validation Action of MVC3

I use Remote validation attribute for SSN property, In view Page I use generic view then the ssn field is like: @Html.EditorFor(model => model.MainModel.SSN) @Html.ValidationMessageFor(model => ...
0
votes
1answer
180 views

How can I show the remote validation message with a jquery in MVC3?

I have a JQuery to show a remote validation message but I only want it to execute for the remote validation and not the required validation. So far I have $('#MyElement').keyup(function () { ...
0
votes
1answer
64 views

What is the best way to set up a sort of a timer for user validation using MVC 4

I have set up some remote validation in my controller for email validation so that the email can be verified right away. I am hoping to take this a little bit further and validate the email as the ...
2
votes
1answer
736 views

Event hooks for MVC unobtrusive remote validation

Is there a way to hook into MVC3 unobtrusive remote validation on the client, before data is submitted to the remote method, and after a result is returned from the remote method? I am trying to tell ...
0
votes
2answers
256 views

Remote Validation in asp.net mvc 4.0 is called on mouseclick not on textchange?

I experience a very strange behavior with Remote Validation in asp.net mvc. These are the steps to reproduce the behavior: 1.) Enter user name "1" in the database 2.) Enter user name "1" in the ...
2
votes
1answer
605 views

Remote validation MVC 3.0 : multiple fields validation

I have the following model: public class Customer { public string FirstName {get;set;} public string LastName {get; set;} ...
0
votes
1answer
442 views

jQuery remote validation not working on keypress, only working on focus change

I have a view model public class UserRegister { [Remote("CheckUserEmail")] public string Email { get; set; } } There is a Register view which is strongly typed with ...
0
votes
1answer
203 views

Rectify the input at client side using RemoteValidation

Is there any possibility of rectifying the input at client side using Remote Validation? For example, the user will enter the date as 010101 which means 01-Jan-2001, can Remote Validation reflect/pass ...
0
votes
1answer
781 views

jQuery remote validation from PHP MySQL query relating to form entry doing strange things in Internet Explorer

I am getting some strange behavior on Internet Explorer with a form I am building, when I add a remote rule in the jQuery, namely, the remote validate rule relating to "username" using ...
0
votes
1answer
309 views

MVC3 Remote Validation of a field within an IEnumerable

I have an object inside an IEnumerable of my model class, the rendered HTML looks like <input data-val="true" data-val-number="The field money must be a number." ...
1
vote
1answer
541 views

MVC 3 Remote Validation jQuery error on submit

I seem to have a weird issue with remote validation on my project. I am doing a simple validation check on an email field to ensure that it is unique. I've noticed that unless I put the cursor into ...
1
vote
0answers
345 views

EF 4 + MVC: jQuery autocomplete and RemoteValidation conflict issue

I have the known issue with jQuery autocomplete and Remote Validation: if I write some values inside an autocomplete control, when I select the value and the control lose focus, the value passed to ...
2
votes
0answers
153 views

ASP.NET MVC3 : Client side validation routine that includes Ajax

Is it possible to include Ajax in a client-side validation script (using jQuery unobtrusive validation as the framework) and still have validation behave properly? I have a validation scenario in ...
1
vote
3answers
544 views

MVC3 Remote Validation of a field within a List

For some reason, whenever I try to remotely validate a primitive property inside an array within my model, the value of the property is not passed as a parameter. For example, when my remote ...
1
vote
1answer
928 views

MVC3 Remote Validation

I am currently in the proccess of setting up remote validation using MVC3 so that a user is alerted if their chosen username already exists. Everything is set up and working correctly appart from the ...
1
vote
2answers
2k views

MVC3 Remote Validation not Fired?

I created a very simple test project to illustrate the problem. My model class public class HomeModel { [Required(ErrorMessage="Missing property1.")] public string Property1 { ...
0
votes
1answer
169 views

Where can I find the RemoteValidation details to use in a HTML Helper or EditorTemplate?

I currently have a MVC3 site in which I am displaying DateTime fields with a specific format, namely uppercase (DD-MON-YYYY). I have create tthe following DateTime.ascx EditorTemplate for this, and I ...
0
votes
0answers
484 views

MVC3 Razor - Remote validation not firing

I try to implement a "Forgot password" mechanism and I thought it'd be better to check the user name and the e-mail address before resetting the password and sending the email. I did this: -- model: ...
4
votes
3answers
732 views

ASP.NET MVC 3: model-level client-side or remote validation

Folks, I need to do some model-level validation in an MVC 3 edit page. (To be specific, I need to confirm that either Field A or Field B is filled in, but not both and not neither.) I want to ...
1
vote
1answer
362 views

ASP.Net mvc 3.0 remote validation

I have this problem: I am validating a model in which the sum of 2 attributes can`t be greater than 100. For this i am using as follow: In my model these are my attributes: ...
5
votes
1answer
1k views

how to use multiple AdditionalFields in remote validation - asp.net mvc

I need to validate the duplicate of FirstName, LastName and Email Address combination using remote validation in my ASP.NET MVC 4 (C#) application. The Remote Validation accepts only one ...
2
votes
1answer
1k views

ASP.Net MVC3: Remote validation calls not firing

Folks, I have a data entry form that has remote validation set up to check for existing values in the database for a certain field. Here's what happens: Go to Create page (data entry form). Enter ...
0
votes
1answer
229 views

RemoteAttribute in viewmodel and ActionNameAttribute in corresponding action method (MVC3)

I just discovered that remote validation using the RemoteAttribute will not work unless either: The action method for the remote validation does not have an [ActionName] attribute, or The action ...
6
votes
4answers
4k views

How to get unobtrusive jquery remote validator to perform async..?

In an MVC3 app, using jquery unobtrusive validation, and a view/model with a [Remote] validator: I am trying to disable the submit button and display a wait icon during remote validation, and when a ...
1
vote
2answers
873 views

Loading indicator for MVC3 unrobustive remote validation

I am doing the MVC3 unrobustive remote validation for checking username availability. It works fine, but it takes quite some time load the validation message! Is there any way to show a spinner/user ...

1 2