The customvalidator tag has no wiki summary.
0
votes
1answer
31 views
ASP.NET Custom Validator and AJAX
I implemented a Custom Validator with AJAX, and It works fine:
EDITED. Add ASPX code
<asp:DetailsView ID="DetailsView" runat="server" Height="50px" Width="25em" DataSourceID="SqlDataSource1" ...
1
vote
1answer
20 views
Make field email validate and required
I need to have a textbox be validated as an email address, and make it a required field. I also need to restrict the email addresses to a specific domain name only (e.g. @example.com).
...
0
votes
0answers
33 views
.NET Web API: Class level validation attribute causes Web API to throw ArgumentNullException if instance is null
I have a DTO class that looks, for example, like this:
public class ExampleDto
{
[DataMember(Name = "Date", IsRequired = true, Order = 1), Required]
public DateTime Date { get; set; }
...
0
votes
1answer
35 views
Dependency Injection in JSR-303 ConstraintValidator
I have the same problem that the guy from this thread has.
More precisely I get the following error, when trying to inject a bean in my custom validator that implements CustomValidator interface ...
0
votes
2answers
47 views
Using Custom Validator on List
I have a Command Object as follows :
class TestCreationCommand {
String title
List testItems = [].withLazyDefault {new VocabQuestion()}
static constraints = {
...
0
votes
0answers
51 views
MVC4 Custom Validation Error Message with field value
I have implemented a custom validation attribute on a field, which checks the database, and everything works fine.
What I would like to do, which I am not sure can be done, is have the error message ...
1
vote
1answer
66 views
Custom validator in springMVC with annotations is not working
Hi i am new to spring mvc validation framework.I am trying to implement a simple custom validator for the login form.
I did this way , but result.hasErrors() is always returning null and my control ...
0
votes
1answer
15 views
error message is not shown for custom validators in MVC3
I have used the above custom attribute from the link (MVC3 unobtrusive validation group of inputs), but made little modification to it. Instead of string as property type, I am checking for List which ...
0
votes
1answer
40 views
Using Custom Zend Validator in INI file
I don't have a custom Zend_Form and I just declared all the elements in the ini file. There is no problem with creating the Zend_Form from the ini file, but I am having problem using my own custom ...
0
votes
0answers
70 views
Symfony 1.4 forms, display a post-validation error in an embeded Form with one-to-many
I have the problem the next post
display a symfony post-validation error in an embeded Form
With the difference that I must show the error in the next field
$values['embededform1'][$x]['field']
...
1
vote
1answer
61 views
Validate on Object then display error using CustomValidator
I'm hoping someone can help me. I want to write custom validation code on directly on the object rather than have to write separate methods for both the website UI and a web service which is using the ...
0
votes
0answers
167 views
Jquery datepicker popup not fading when date selected with custom validation
I had a datefield and it was working fine until I used a custom validator on the same.
I am having an issue when I now select the date from the datepicker, after selecting it is not closing upon ...
0
votes
0answers
336 views
asp.net visual basic custom validator check if textbox value is in listbox collection
I am trying to validate a user entry textbox against a databound listbox's items. Simple zipcode validation.
I'm using a custom validator and need it to fire as a client side validation, not after ...
0
votes
1answer
29 views
Custom validation not found
I am following the official documentation in order to create a simple custom validation that checks if an email address is formatted properly.
In applications lib folder I have creating file with ...
1
vote
1answer
68 views
How to validate gridview for emptiness through the custom validator?
How to validate the gridview for emptiness through the custom validator :
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="!!! "
...
0
votes
0answers
319 views
Uncaught TypeError: Cannot read property 'validator' of undefined
I'm using JQuery Tools validator, but I'm not able to raise the validators. I'm developing a custom input type and attributes.
If anybody could help me, I'm blocked!
Thanks in advance.
This is the ...
0
votes
0answers
86 views
gridview customvalidator in edititemtemplate
I am trying to validate two controls in the edititemtemplate of a gridview.
Based on a selection in a dropdownlist. I would like to make sure that a textbox has a value.
I have researched alot and ...
0
votes
1answer
98 views
Custom Validator fails to get Combobox ID
I am using the custom Validator as Required Field validator fails for the Ajax Combobox, but I am not able to work it out for the Combobox, howeverr when I pass the Id of another Textbox in the custom ...
1
vote
1answer
111 views
How to get a custom mvc3 attribute to validate client side
I have written a custom attribute but it does not seem to work client side. It only works on the server when i call the ModelState.IsValid() method. I read somewhere online that i needed to register ...
0
votes
0answers
225 views
Two custom validator on same page with onservervalidate ASP.Net C#
I currently have a TextBox and ListBox, each one of them is doing a certain activity to check with the MSSQL DB in the OnServerValidate. However, the problem is that only the last Custom Validator is ...
1
vote
1answer
42 views
Deleted strings from validators still showing up in project
I'm trying to put together a form and work within the ASP validation framework if possible. Recently it seemed prudent to re-think some of the validation and so I got rid of four validators and ...
1
vote
1answer
328 views
ASP.Net JQuery customvalidator on multiple fields
I am trying to do validation on multiple fields with the custom validator in ASP.net using JQuery but I can't get it to work.
There is a drop down box which contains two values, based on these values ...
0
votes
0answers
137 views
Custom Validator Event Not Firing in DetailsView Control
I am trying to validate user input in a DetailsView control. After the user enters a text value in a field I would like to check that the value entered is not a duplicate within the table.
A new ...
1
vote
1answer
333 views
Angular Custom Form Validation and Directives
I have a custom validation directive that I had attributed to the form
<form myValidations>
app.directive('myValidations', function(){
return{
//require: 'ngModel', note its commented out
...
0
votes
0answers
83 views
Use custom validation at client side using javascript
I am using a checkbox list and getting it populated from excel sheets. The user needs to select at least one option to go to the next page. How do I perform the validation using javascript?
Below is ...
1
vote
1answer
323 views
CustomValidator textbox required on radiobuttonlist select
On my page I have a Radio button list and a textbox.
The textbox is hidden by default then appears if the user clicks yes. Once they click yes then the textbox must be filled in before they can ...
0
votes
1answer
197 views
JSF 2.1 Validation of two inputs at the same time using Ajax
I have a problem with validation of two inputs at the same time.
In my validator I need data from both:
<h:selectOneListbox>
<h:inputText>
The idea is to check if an address is ...
0
votes
0answers
128 views
Telerik radgrid invoke custom validators
I have this radgrid(telerik) which has validations fired by custom validators for each record. These customvalidators call javascript functions for validations. I also have a button that will add a ...
0
votes
2answers
105 views
Custom validator getting invoked onclick of all controls on the page
i have written a custom validation function to check if a panel is displayed
i want the function to be invoked onclick of NEXT button.
But instead it gets invoked onclick of every button on the page.
...
0
votes
1answer
137 views
having some trouble with a custom validator using jquery
I'm having an issue getting a custom validator to work with jquery. I'm pretty new to this so please bear with me if I'm asking a stupid question.
Here is the function I created to check and see if ...
1
vote
1answer
116 views
Web2py Custom Validators
Hi....
I am new too Web2py and am trying to use a custom validator
class IS_NOT_EMPTY_IF_OTHER(Validator):
def __init__(self, other,
error_message='must be filled because other value '
...
0
votes
0answers
127 views
enable CustomValidator with javascript triggers validation
I have a condition with should enable/dissable a CustomValidator with javascript (see code below). It works fine to dissable the CustomValidator (asp.net) but when I'm trying to enable it the ...
0
votes
1answer
59 views
Can't convert 'data annotations' to 'bool'
From the http://msdn.microsoft.com/en-us/library/f5db6z8k(v=vs.100).aspx
i've created a customeValidators.cs page, which checks if data entered exists in Db.
This works. However when i try to call ...
-1
votes
2answers
152 views
credit card validator with jQuery
This code not working and i can't understand why:
this is special 9 digit card validator,
i have a textbox in the page "9digitCardTextBox" and calling with clientside validator on .aspx page.
the ...
0
votes
1answer
297 views
writing validation function for listbox
I have a asp control listbox. And i have to validate this. This is described below:
<div style="float:top; width:300px">
<span>Anrede</span>
<asp:DropDownList ...
1
vote
0answers
34 views
Site-wide CustomValidator methods.
I have a web form that uses CustomValidators, and I have a few validation routines in my "validators.js" file that I can set as the ClientValidationFunction on each CustomValidator. Routines such as ...
1
vote
1answer
63 views
Custom validations causing errors
I am new to rails and am following the Depot application in the Pragmatic Agile Web development with rails and I am having an odd problem.
In my product model I created a validator for confirming ...
0
votes
1answer
143 views
C# Custom Validation - Change div border colour
I have a set of custom validators that change the border colour of each textbox or drop down list. All works great. I'm also using a HtmlEditorExtender. I've surrounded it with a div element to style ...
1
vote
2answers
82 views
Grails custom validater, getting a reference to the field name
I am trying to write a generic custom validator for a property, to make it generic i need a reference to the field name within the closure, the code is as follows
In config.groovy
...
0
votes
0answers
552 views
Custom knockout validation: validationMessage not getting displayed
Thanks in advance for your help with this.
I am using knockout 2.2 and knockout.validation 1.0.1.
I am quite new with KO and web programming, so kindly excuse absence of jsFiddle example. Did try but ...
1
vote
2answers
105 views
How to validate double values in .Net using a custom validator?
I am developing an ASP.Net web api project and I want to validate my Server data model according to the JSON request I get from the Client side. In my Server Model Class, I have a double value and I ...
2
votes
1answer
581 views
ASP.NET CustomValidator not working
I have problem:
I have a custom validator on my page which validates imieTextbox control. But it's not working. And I don't know why.
This method comes from register.aspx.cs file:
protected void ...
0
votes
0answers
172 views
CustomValidator Only Displays After All Other Validator's Conditions Are Met
I have an ASP.NET web form that has several fields with RequiredFieldValidators, RegularExpressionValidators. on page submit all validators display their error message if they don't pass validation. ...
0
votes
1answer
109 views
Issue with multiview control and expando attributes
I have a multiview control which I effectively use the same as a wizard stepping through 4 panels to complete a form.
Each view has a number of input controls/validator controls. For reuse, these are ...
0
votes
1answer
71 views
Curious about removing parentheses in CustomValidator's ClientValidationFunction property?
I'm a beginner in asp.net. I tried the CustomValidator and put my_fun() Javascript function into the ClientValidationFunction property. I get that error :
Microsoft JScript runtime error: Object ...
0
votes
2answers
153 views
Multiple update panels in a page each having a custom validator, all fires on a postback
I have a scenario... a page with multiple update panel, each update panel has some controls (with auto postback-on) and custom validator associated with this control.
The problem is... on postback of ...
0
votes
0answers
143 views
Custom Validator not Executing Server-Side
I wrote a simple validator to use on a view model:
public class SomeCustomValidatorAttribute : ValidationAttribute, IClientValidatable
{
public override bool IsValid(object value)
{
...
2
votes
1answer
781 views
Set asp:CustomValidator text from codebehind
I have User ID and Password fields, both of which work well with the RequiredFieldValidator. Just below that, I have placed a CustomValidator, and I'm attempting to have a similar validation from the ...
0
votes
1answer
451 views
Custom validator stop working after setting 'ControlToValidate' property
I'm using ASP.NET Pages and CustomValidator control to validate set of controls. Also I'm using ClientValidation property and my custom javascript function. My main issue is : when I setting ...
1
vote
1answer
298 views
Asp.net MVC3 custom validator created using dataannotation showing messages in incorrect place
I am using Asp.net MVC3, razor view engine and data annotation for model validation.
I have a form in which have to input Url details(Url and Description).Both fields are not required. But if i ...


