Tagged Questions

0
votes
1answer
24 views

WPF IDataErrorInfo multiple field validation

What is a good way to integrate multiple field validation with IDataErrorInfo? Let say that I have a dialog with 3 textboxes for ftp information URL Username Password I have put the Required …
2
votes
3answers
83 views

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, …
1
vote
2answers
73 views

Is IDataErrorInfo ignored during model validation in MVC 2?

I currently migrated my project to MVC 2 and IDataErrorInfo doesn't seem to work when using default model binding and validation. Is it cut out?
2
votes
0answers
61 views

Triggering data validation in WPF

I have a problem in WPF with validation. I have a user control which has few textboxes, which are binding to datamodel. The validation is implemented with IDataErrorInfo. I want the validation to …
0
votes
2answers
74 views

using IDataErrorInfo in asp.net mvc

I've got a simple address entry app that I'm trying to use the IDataErrorInfo interface as explained on the asp.net site. It works great for items that can be validated independantly, but not so …
1
vote
2answers
72 views

IDataErrorInfo with complex types

I have an Address object defined simply as follows: public class Address { public string StreetNumber { get; set; } public string StreetAddress { get; set; } public string City { get; …
0
votes
1answer
102 views

How do you validate a clr property after it has been updated instead of before when implementing IDataErrorInfo?

I have implemented IDataErrorInfo in one of my classes to validate a property of that class. The property is bound to a control on my wpf user control. The validataion works fine, except there is …
2
votes
2answers
99 views

IDataErrorInfo in winforms

Can IDataError info be used properly in a winforms application? In the past I was doing my binding the usual way(1) and did the validation in the OnValidating event of the particular control. I would …
0
votes
0answers
37 views

Validate ViewModel upon button click.

I have a ViewModel that implements IDataErrorInfo and a master-detail-view. How can I trigger the vaildation of the current ViewModel item when the user hits the save button in the detail view and not …
1
vote
1answer
118 views

C# IDataErrorInfo and child property

Hello, I have an object bound to a winform and this object implements IDataErrorInfo. I have an error provider. The problem is when a property of a a property change. There is no problem when I …
-1
votes
1answer
64 views

How to unit test IDataErrorInfo?

Hi I am reading Asp.net MVC Framework and I am reading about IDataErrorInfo as form of validation. So I am just going to post what he has. Product Class using System; using …
0
votes
1answer
87 views

How can I refactor this Validation?

Hi I have a validation class that implements IDataErrorInfo that has all the methods that you must implement. One is public string this[string columnName] { get { …
0
votes
1answer
195 views

Using IDataErrorInfo and setting Validation.HasError style

Hi, In WPF using IDataErrorInfo and Style I want to create form where I can provide end user three different status while validating data To make scenario more clear 1) I have textbox next to it I …
1
vote
1answer
118 views

How do you stop DataGridView calling IDataErrorInfo.this[string columnName] get?

I have a data object that implements IDataErrorInfo however the validation logic is a bit slow. Not that slow, but slow enough you don't want to call it a large number of times. In my application a …
0
votes
1answer
545 views

IDataErrorInfo : Not validating input

I have a user control which contains a textbox. I have a class called Person which implements IDataErrorInfo interface: class Person : IDataErrorInfo { private bool hasErrors = false; #region …

1 2 next
15 30 50 per page