Tagged Questions
The idataerrorinfo tag has no wiki summary.
7
votes
4answers
403 views
WPF DataGrid validation errors not clearing
So I have a WPF DataGrid, which is bound to an ObservableCollection. The collection has validation on its members, through IDataErrorInfo. If I edit a cell in a way so as to be invalid, and then tab ...
7
votes
1answer
776 views
IDataErrorInfo vs ValidationRule vs Exception
Can anyone tell me which is a better approach for Validation in WPF.
Implementing IDataErrorInfo
Creating ValidationRule
Throwing Exceptions
in terms of performance, memory leaks, code ...
5
votes
2answers
732 views
Validation in WPF - Custom validation rule or IDataErrorInfo
As a new WPF programer I cant find the difference between two different way to validate user input:
What are the pros and cons of writing custom validation rule against implementing IDataErrorInfo, ...
5
votes
4answers
9k views
Using IDataErrorInfo in M-V-VM
If my domain objects implement IDataErrorInfo, and I am using M-V-VM, how do I propagate errors through the ViewModel into the View? If i was binding directly to the model, I would set the ...
4
votes
1answer
314 views
WPF Data Validation? Anything out there better than IDataErrorInfo?
Is there a preferred practice to do Data Validation from within your ViewModel?
Looking into it some people seem to prefer IDataErrorInfo and some prefer to roll out their own validation frameworks ...
4
votes
1answer
520 views
WPF- Validation -The validation error message goes behind the other controls because of AdornerDecorator
I have implemented IDataErrorInfo in my ViewModel to return a string if the text box has error.
public string this[string columnName]
{
get { return "Error-- This is a long error ...
4
votes
2answers
476 views
How does IDataErrorInfo work?
I'm currently looking into validation for my WPF app and seen the mention of IDataErrorInfo. However there are few guides to how to use it and worse there are none who explain how it works.
On ...
4
votes
3answers
1k views
DataAnnotations vs IDataErrorInfo
DataAnnotations vs IDataErrorInfo
Pros and Cons of both?
Benefits of one over the other? (especially related to MVC)
4
votes
6answers
2k 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, ...
3
votes
2answers
93 views
Validation between multiple fields in different levels
I got a problem with validations between multiple fields. For example - I got a ViewModel named RangeDateViewModel that contains 2 instances of a class named DateViewModel, each of them represents a ...
3
votes
4answers
139 views
MVC 3 Complicated validation of models
Current validation method for use in MVC 3 seems to be ValidationAttributes. I have a class validation that is very specific to that model and has interactions between a few properties.
Basically the ...
3
votes
4answers
938 views
S/L 4 & IDataErrorInfo - How to force re-validation of a control (when a related control is touched)
I have two controls bound to properties MinCartValue and MaxCartValue. MinCartValue must be less than MaxCartValue. To achieve this validation I have implemented the the IDataErrorInfo interface, and ...
3
votes
2answers
211 views
WPF- Validation - Can we have Buttons in a validation template and how can we bind it to the ViewModel method
Requirement:
Need to display an error message when the user types a forlder name that doesn't exist as shown below:
Problem: I am able to display the UI but not able to call a method in the view ...
3
votes
3answers
2k views
How can I define a IDataErrorInfo Error Property for multiple BO properties
I'm starting to implement validation in my WPF project via the IDataErrorInfo interface.
My business object contains multiple properties with validation info. How do I get a list of ALL the error ...
3
votes
2answers
2k 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 ...
2
votes
1answer
64 views
WPF Validation Control
I am new to WPF and trying to implement validation control on submit form.
Can anyone help me. My code doen't show up any error message even if I enter invalid data infect it does nothing.
Here is ...
2
votes
3answers
183 views
How can I validate multiple properties when any of them changes?
I have two date fields: StartDate and EndDate. StartDate must be earlier than EndDate.
If the user changes the StartDate to something greater than the EndDate, a red border appears around that ...
2
votes
1answer
266 views
Combining DataAnnotations and IDataErrorInfo for WPF
I am writing a WPF application and I want to use Data Annotations to specify things like Required Fields, Range, etc.
My ViewModel classes use the regular INotifyPropertyChanged interface and I can ...
2
votes
1answer
152 views
IDataErrorInfo - Is there a collection is not empty validation attribute?
I don't know if I just can't find it or if it does not exist, but is there any validation attribute which checks if a collection is null/empty or not?
If not, is there any good resource out there on ...
2
votes
1answer
231 views
ObservableCollection and IDataErrorInfo with a XML file
MainWindow() and GetXmlData() work fine and display the xmlfile on gridview. But when I include the XmlNode :IDataErrorInfo class, it stops working.
I like to get all of them to work to display and ...
2
votes
2answers
1k views
Implementing validations in WPF PropertyGrid
We have implemented a property grid and properties of selected object(in another library) are displayed in property grid. Property values are bound to property grid controls through binding. Now we ...
2
votes
1answer
190 views
WPF IDATAError no showing when control becomes visible
I have a weird issue with the ErrorTemplate. I created a WPF MVVM application. I am using a ErrorTemplate and the IDataError interface to show errors. On my form I have some controls that are ...
2
votes
1answer
379 views
WPF validation order between IDataErrorInfo and exception
I have a control that has both ValidatesOnDataErrors = true and ValidatesOnExceptions = true. I also have something watching the Validation.Errors collection for this binding.
The user enters a ...
2
votes
1answer
466 views
Informing ViewModel of ValidatesOnExceptions input errors
In my application I have numerical (double or int) ViewModel properties that are bound to TextBoxes. The ViewModel implements IDataErrorInfo to check if the values entered fall within acceptable ...
2
votes
1answer
442 views
LINQ to SQL Classes with INotifyPropertyChanged and IDataErrorInfo for WPF bindings
I use the LINQ to SQL Classes to access to my database. Now I want to use the LINQ to SQL Classes for WPF DataBindings and validation. How do I implement these two interfaces to my projects Model? Is ...
2
votes
2answers
994 views
Exception validating data with IDataErrorInfo with a MVVM implementation
I'm trying to validate data in my MVVM application using IDataErrorInfo, but I'm running into some problems.
When I set my TextBox with an invalid value, the validation works fine. But after I set ...
2
votes
1answer
1k views
Validation.HasError attached property
Did I miss something?
1- Style
<Style TargetType="{x:Type TextBox}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Validation.HasError}" Value="true">
...
2
votes
2answers
799 views
IDataErrorInfo: Validating when page submitted
I am creating a WPF application that will use IDataErrorInfo data validation, which my business objects implement. I have been working with this demo from a blog post to understand ...
2
votes
1answer
860 views
Problem with WPF validation(IDataErrorInfo) and tab focusing
I have a TextBox bound to a property of an object which implements IDataErrorInfo.
I set up the Validation.ErrorTemplate of the TextBox, and it works fine. The problem is that i have these on a ...
2
votes
2answers
642 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
1answer
591 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 ...
2
votes
3answers
1k 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 ...
2
votes
2answers
420 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; ...
2
votes
1answer
519 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 ...
1
vote
2answers
45 views
How to create a similar template like this for errors?
I've seen in several sites where publish some images of their applications using a style for ErrorTemplate like this:
Do you know where can I find it?
1
vote
1answer
46 views
Is there a way to set default binding option in base class?
I have MyTextBox which is derived from TextBox. I want to set Binding Option ValidatesOnDataErrors = True of TextProperty in MyTextBox so that whenever I use this control ValidatesOnDataErrors is ...
1
vote
2answers
106 views
How can I stop IDataErrorInfo from firing for new items?
I am developing a WPF application (using MVVM) and have implemented IDataErrorInfo on my ViewModel. Part of my validation checks that mandatory fields have been entered. This works perfectly for ...
1
vote
1answer
237 views
wpf idataerrorinfo combobox
I have a simple view and viewmodel with the latter implementing IDdataErrorInfo and IValidationExceptionHandler. The view contains a combobox with its ItemsSource bound to an collection with ...
1
vote
0answers
342 views
WPF + MVVM + Enterprise Library Validation Block
I'm starting a new WPF MVVM App and I'm trying to get an idea how to handle validation "better than I have done before" - before I used IDataErrorInfo on the model and viewModel. It worked ok but it ...
1
vote
2answers
495 views
How to use ValidatesOnDataErrors on a TextBox inside an ItemsControl
I'm trying to have a TextBox's content be validated using IDataErrorInfo. The source of the list below is a List and each item is display. When i put ValidatesOnDataErrors=True in the Binding for ...
1
vote
4answers
182 views
What should MVVM Model be like?
Hello i have 3 questions about MVVM Model.
Isn't there any way to bypass that redundant PropertyChanged("PropName");
What is the best way to wrap POCO objects to WPF INotifyPropertyChanged, ...
1
vote
1answer
223 views
Force one or more checkboxes to be selected
I have three checkboxes that have their own error checking as to whether them being checked is valid but I would also like to enforce that at least one must be checked before continuing. I'm currently ...
1
vote
2answers
198 views
Where should I perform a check to see if a value already exists in the database when performing validation in MVVM using IDataErrorInfo?
Getting started with all this MVVM stuff, I was following this post by Josh Smith that talks about an approach to validation while using MVVM. The example is simple, and I began to wonder how I would ...
1
vote
1answer
310 views
How can I trigger this Error Template?
Below is a template that works from a binding perspective, but the error template doesn't show, and without an AdornedElementPlaceholder the result looks a bit garish.
My view models implement ...
1
vote
1answer
391 views
Cross-property validation in WPF
Currently I am using the IDataErrorInfo interface to implement validation in a WPF application. The indexer which is part of that interface allows to validate a single property, like so:
public ...
1
vote
1answer
550 views
Disable button if validation in model has error
Hi I make validation on error in my model class.
public class CurrentUser:IDataErrorInfo, INotifyPropertyChanged
{
//...
private string _validationResult;
private string _nick;
...
1
vote
1answer
450 views
Validation.HasError does not trigger again if new error comes in while already true
I use MVVM and my object implement IDataErrorInfo. When a property is set, I run custom validation methods and if the validation passes, I return String.empty, which sets Validation.HasError to ...
1
vote
2answers
214 views
Advice needed regarding validation in MVVM
I appreciate this may sound a bit similar to some other questions, but I haven't found one which quite satisfies my query, so please bare with me. I'm currently converting one of my existing ...
1
vote
2answers
336 views
Using IDataErrorInfo or any similar pattern for propagating error messages
I apologise for this question as it is rather fuzzy and there are several questions integrated but as they are so closely related I did not want to break them apart into several submissions.
I am ...
1
vote
2answers
2k views
Prism IDataErrorInfo validation with DataAnnotation on ViewModel Entities
I'm implementing data validation in WPF using the Prism MVVM framework. I'm using clean data Entities in the ViewModel which are being bound to the presentation layer.
<TextBox Text="{Binding ...