Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
96 views

How to build a custom Validator for Castle Validation on client-side?

I'm using castle validation and I'd like to know why my validator is not working : [Serializable] public class PositiveIntegerValidator : AbstractValidator { public override bool ...
1
vote
0answers
41 views

Can Castle Validators work with DataAnnotations attributes?

Is there a way of making DataAnnotations attributes such as Required to work with Castle Validators? I know Castle has its own attributes - but I am wanting to use the same attribute for the view and ...
1
vote
1answer
198 views

Is there a way to disable Castle Active Record validation for an nhibernate session / active record scope

Is there a way to disable Active Record validation for an nhibernate session / active record scope? I have a scenario where by we are performing deletion of a large number of items - and in some ...
1
vote
2answers
80 views

button and validators

I have a Table with two textboxes. Every textbox has a required validator to make the user insert data in the textbox. I also have a Login table to confirm user privilages. When I submit the button ...
1
vote
2answers
570 views

MVC Validation Error Messages not hardcoded in Attributes

I have a requirement that the validation error messages that are passed to my view come from the database. I want to use data annotation on my model but the error message key in validation ...
1
vote
2answers
394 views

What techniques are being used to pass MVC ModelState validation errors back to the client when using JsonResult?

I'm sort of thinking out loud here, so let me know if I need to clarify... on ajax heavy sites, when using JsonResult to pass information back to the client, what techniques, patterns, best practices ...
1
vote
1answer
159 views

For someone with experience using xVal, is it worth it to learn and use castle validators over the built in data annotations?

What does the castle validators offer me over standard data annotations? I am a first-time user of xVal, data annotations and castle validators so there will be a learning curve regardless of which I ...
0
votes
0answers
51 views

How to make Castle validation attributes work with MVC3 Client validation?

For legacy reasons I am tied into using Castle Validation attributes for validation. Is there a way to get MVC 3 to work with these to produce client side validation? I did consider XVal? But that is ...
0
votes
1answer
36 views

How to use CastleValidator with clientside jquery validation plugin in asp.net mvc?

How to use CastleValidator with clientside jquery validation plugin together in asp.net mvc?
0
votes
1answer
97 views

Castle Active Record - Validation and Relationships

I have two models: foo and bar. Foo has a bar object. Foo and bar have validation rules. If I call Foo.isValid() it doesn't validate bar too. I need to validate bar with isValid. How does Castle ...
0
votes
0answers
20 views

How to customize the validation message in Castle.Component.Validator

I'm using Castle.Component.Validator but I don't like the Property=.... and Type=... in validation message. How can change the validation message builder?
0
votes
2answers
149 views

C# Custom Attributes accessing database

I have a custom attribute that accesses the database with nhiberate. The attribute actually inherits from Castle's AbstractValidationAttribute and is used to validate properties against regular ...
0
votes
1answer
437 views

Castle Validators how to Validate Is Lesser/Greater Than Or Equal

I see the ValidateIsLesser and ValidateIsGreater attributes. But what if I want to do a ValidateIsLesserOrEqual and/or ValidateIsGreaterOrEqual. Do I just need to write these custom attributes or is ...