Tagged Questions

2
votes
2answers
449 views

Prevent jQuery server-side call when client side validation fails in ASP.NET MVC

I have a view page with model validations and client side validation enabled. I have a submit button which on click I have called a javascript function which uses jQuery for an AJAX call to the ...
2
votes
2answers
336 views

Is MVC 2 client-side validation broken in Visual Studio 2010 RC?

I can't seem to get client side validation working with the version of MVC released with Visual Studio 2010 RC. I've tried it with two projects -- one upgrade from 1.0, and one using the template ...
2
votes
1answer
1k views

Client-Side validation prvent Manually Postback by JavaScript eval()

I encouter some postback issue when using GetPostBackEventReference. Here is the Scenario: I have a javascript modal popup dialog and got a button in this modal dialog which used to select things ...
2
votes
2answers
736 views

Validators: Do they Stay disabled on postback when disabled ClientSide?

I have been learning alot about the standard asp.net Validators, and my latest discovery was about how to disable a validator client side, which was pretty cool. now, if my initial post has the ...
1
vote
1answer
303 views

How to validate gridview when Clicking on Save button?

I have a gridview in a form that contains a Save ImageButton. I would like to create a Client-side CustomValidator that checks whether the grid is empty or not. If it is empty then I would like to ...
1
vote
0answers
376 views

Call custom client side validation function after WebForm_OnSubmit? .NET

I want to run a simple JS function after my .NET validator controls run their javascript. My onsubmit value is javascript:return WebForm_OnSubmit();, which seems to be generated automatically and I ...
1
vote
2answers
303 views

Disable all client side validation in an Asp.Net site

I would like to disable all client side validation in an Asp.Net web site in order to test that server side validation is correct (i.e. I want to test against people altering the response or tampering ...
1
vote
2answers
280 views

ASP.NET MVC Client-side validation with MvcContrib FluentHtml

What's the recommended way to do client-side validation using the built-in MVC2 code with MvcContrib's FluentHtml builders? We're using the jQuery client-side validation code, not the default ...
1
vote
0answers
472 views

ASP.NET Validate all validators with different validation groups

I'm writing an ASP.NET page and trying to get validation working. My problem is that I've got a repeater that contains several custom grid controls, each of which has validators and a validation ...
1
vote
2answers
318 views

asp:Login EnableClientScript

We are using ASP.NET 2.0 to build a website, and are using Forms Authentication. As usual I'm using the ASP.NET Login control. In this project, we are not allowed to use client side (JS) validation, ...
0
votes
1answer
71 views

cannot display label from javascript

I am validating a form from javascript. The target is: if user do not enter value in a required field, an error message will show up and will disappear after few seconds. BUT The problem is: The ...
0
votes
1answer
372 views

ASP.net MVC 3 Ajax.beginform update and Client Side validation Problem

I am trying to update the partialview in which i used ajax.beginform. normally, first time it validate on client side but when i refresh the partial view innerHTML using outside button event, it is no ...
0
votes
1answer
80 views

ASP.NET form validator display dynamic, adjust CSS of input?

I've got my dynamic validator working, (its creating a span on invalidation client-side), is there a way to control the styling of the invalid input on client-side val? I want to give it a redish ...
0
votes
1answer
61 views

Asp.net MVC Client validation, strange behavior

When i write : <% Html.EnableClientValidation(); %> <% using (Html.BeginForm()) { %> <%: Html.ValidationSummary(false) %> <%: Html.EditorForModel() ...
0
votes
0answers
139 views

ASP.NET MVC 3 clientside validation and ninject

In an ASP.NET MVC 3 project, I'm using ninject for dependency injection. I created a contact form and wanted the clientside validation to be enabled. But unfortunately, validation never got ...
0
votes
3answers
78 views

jQuery validation needed

Thanks for taking the time to help out. I'm using ASP.NET WebForms and I need a build a custom control for a custom CMS. I've implemented the server-side validation already. What it does is it check ...
0
votes
3answers
585 views

How do I add custom Javascript to asp.net client side causes validation function?

I have an asp.net web for with a few Validation controls on: <div class="form-row"> <label>Email</label> <asp:TextBox ID="txtUserName1" runat="server" ...
0
votes
4answers
1k views

Disable client side validation for some fields in ASP.NET MVC

How can I conditionally disable client-side validation of some fields ? Here is the example of what I need to do: user writes name and address and submits. Both are validated both server and ...
0
votes
2answers
94 views

ASP.NET validation: gathering information from client-side validation

I'd like to implement ajax message box that will gather information from validators on a page when client-side validation fires. Like: I have left some text fields blank then press submit button and ...
0
votes
4answers
781 views

How to trigger ASP.NET client-side validations without submit?

I have a website in ASP.NET (WebForms, NOT MVC) which has a survey form divided in several slides. Each slide has a next button that, obviously does a transition (client-side, not post back or remote ...
0
votes
1answer
200 views

Clientside validation of a textbox

I have an asp.net control textbox, clicking on which a jquery timepicker appears and user can select any time.But I want to validate the selected time so that it is one hour greater than the current ...
0
votes
1answer
136 views

Asp.net mvc client side validation - show errors in the same div

How do I list all generated errors in the same div? Something like this: <div id="errors"> <ul> <li>Email is invalid</li> <li>Firstname is required</li> ...
0
votes
1answer
427 views

asp.net mvc2 microsoftMvcJqueryValidation - Include my custom client-side function

I'm using microsoftMvcJqueryValidation and I want to call my own client-side validation function for a particular field with the system so that it fires with the other auto generated client-side ...
-1
votes
1answer
229 views

Javascript to check validation and change textbox color

Check out the code: <script type="text/javascript"> function ValidateTextBox(source, args) { var is_valid = false; //Regex goes here var regex = /^[a-z A-Z]+$/; ...