Provides the functionality to offer custom error information that a user interface can bind to.

learn more… | top users | synonyms

0
votes
2answers
47 views

IDataErrorInfo best practices

I am working in a WPF project using MVVM. What's the best practice to validate errors using IDataErrorInfo? In my Model or ViewModel? Whats the best pattern to use to implement validation? P.S. I ...
0
votes
2answers
20 views

Forcing IDataErrorInfo.this[string columnName] to be called so that a validation tooltip is updated

I have a tricky problem with a WPF data grid and validation error tooltips not updating when validation messages change. This is with .Net 4 code, so I can't use INotifyDataErrorInfo. I have an ...
1
vote
1answer
55 views

Change When IDataErrorInfo gets called

I'm trying to configure my validations to only trigger when I click the save button. I've never used IDataErrorInfo before so from the start I'm not very clear on how to set this up. I am trying to ...
1
vote
1answer
472 views

MVVM CallerMemberName and “magic strings”

New C# 5.0 release introduced something to get rid of "magic strings" in INotifyPropertyChanged implementation like: OnPropertyChanged("CustomerName"); Now it is possible to write just: ...
1
vote
1answer
330 views

Show Validation Error Template on Controls within a UserControl in WPF

How do you get the WPF error template to appear on a control within a UserControl in WPF? I have a UserControl containing two Labels, two TextBoxes, and a CheckBox. One of the TextBoxes represents ...
0
votes
1answer
61 views

IDataErrorInfo Issue

I have two properties [Say Size, StrVal] in my viewmodel class. One of the constraint is that StrVal length should be less than or equal to Size; This constraint is applied in IDataErrorInfo indexer. ...
0
votes
1answer
84 views

How to implement generic control validation?

I have recently been trying to get into the habit of using MVVM design patterns within the project im working on with the aim of decoupling the various modules in the app and make it suitable for unit ...
1
vote
1answer
107 views

WPF IDataErrorInfo issues

I've used WPF and IDataErrorInfo in the past apps to display errors to the user via a controltemplate by putting an image in the adorner and adding a tooltip to the image like this; <Style ...
0
votes
3answers
188 views

Using IDataErrorInfo in Model V/s ViewModel

I'm having trouble trying to figure out the best way to implement IDataErrorInfo in my WPF application. I have a few models, each with a lot of properties, that are being used. The ViewModel has ...
1
vote
0answers
79 views

Why is the columnName property in IDataErrorInfo returning an empty string?

I am developing a WPF application using the .NET 4.0 Framework and using a telerik RadGridView to display an assortment of data. The RadGridView is bound to an Observable Collection populated from a ...
2
votes
1answer
84 views

Error Style displayed even if the usercontrol is collapsed/hidden

I've an usercontrol which validate it's content. I'm using IDataErrorInfo to validate the input(I've to use .Net 3.5). I'm following this tutorial: ...
1
vote
2answers
402 views

IDataErrorInfo : How to know if all properties are valid?

I have a WPF application(.Net 3.5) which uses the IDataErrorInfo on the ViewModel to validate input. It works great, the usercontrol get the correct UI feedback. The problem is that the user can ...
0
votes
2answers
443 views

WPF: Force IDataErrorInfo validation

I have two controls on some panel: textbox and combobox: <TextBox Text="{Binding ShapeName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}" /> <ComboBox ...
1
vote
1answer
189 views

xaml validation error rad line and error tooltip not disply using IDataErrorInfo?

In my project, for the validation i have used IDataErrorInfor and in xaml code i have mentioned NotifyfyOvalidationError= true for textbox. All validations are performed correctly but only thing is ...
3
votes
1answer
318 views

Implementing IDataErrorInfo in a view model

I have a ViewModel class with a Phone object as one of its properties , my main window data context is set to the ViewModel, do I need to implement IDataErrorInfo on the underlying Phone model class ...
0
votes
1answer
141 views

WPF triggering on multiple update sources

Quick googling doesn't yield a viable duplicate for this. I have what I hope is a pretty simple question about WPF error templates and/or the UpdateSourceTrigger property of a Binding. I'm kind of a ...
0
votes
1answer
260 views

IDataErrorInfo validation in DataGrid with CellTemplate and CellEditingTemplate

I'm having trouble concerning validation in DataGrid. I'm using IDataErrorInfo validation in model classes. The problem is in editable DataGrid with separate CellTemplate and CellEditingTemplate ...
0
votes
1answer
119 views

Validation for ComboBox reference property

I cannot get IDataErrorInfo to validate reference properties that have [Required] attribute set to them (or [ReferenceKey]) and that contains null as initial value. I am using WPF + EF 4.1. Validation ...
1
vote
3answers
461 views

Using IDataErrorInfo with Nested Objects

I am using MVVM and I want to use IDataErrorInfo to validate my View. My current implementation includes Nested objects and different ViewModels. e.g. Business Entity 'Customer' contains Business ...
0
votes
3answers
146 views

How to provide validation for child classes that implement different properties?

I have a parent class implementing INotifyPropertyChanged, and the parent class has multiple children. The children have different properties that all call PropertyChanged. I want to add validation, ...
2
votes
1answer
125 views

IDataErrorInfo validation isn't giving any 'ErrorContent' (see edit)

What I want to achieve: I'm attempting to implement fairly simple Data Validation within TextBoxes. If validation rules are not met, TextBox border turns red and error message is displayed in its ...
1
vote
1answer
227 views

IDataErrorInfo error message triggers, but no message is shown

Hello fellow programmers. I have this strange issue on Silverlight MVVM pattern using IDataErrorInfo. It's my first question made here in StackOverflow, so I hope I manage to explain it correctly. ...
-2
votes
1answer
116 views

Localize Data validation errors

When I use: [Required(ErrorMessageResourceType = typeof (Resources), ErrorMessageResourceName = "MessageIISPathRequired")] [CustomValidation(typeof (IISVM), "WebsiteRootExists", ...
0
votes
1answer
141 views

Error validation with IDataErrorInfo and IValueConverter

I have a class with a List<string> Tags that I want to display in a TextBox. For this I use a IValueConverter. ListToStringConverter: public object Convert(object value, Type targetType, ...
0
votes
1answer
92 views

WPF IDataErrorInfo icon location right

I have a validation template as below. But we can set the error icon either inside control or left of the control. Can you please tell me how can i make it blink at the right of the control (Outside ...
1
vote
1answer
236 views

Enabling or disabling validation upon context

Introduction I have two TextBox in my view, each binded to some properties in my view-model (Property1, Property2). TextBox are alternatively enabled upon some boolean, and properties, are ...
2
votes
1answer
230 views

Is there a better way to implement model validation with Entity Framework+IDataErrorInfo than this?

Currently, I have this : Generated model partial class by entity framework My own partial class of this entity implementing the IDataErrorInfo interface This works, however : is there anyway I ...
0
votes
1answer
202 views

IDataErrorInfo Combobox

My Customer Model is as below. Customer Model contains validation attributes CustomerModel.cs [IsRequired()] CustomerID - Int; [IsRequired()] CustomerName - String; CustomerViewModel contains 2 ...
0
votes
1answer
138 views

How to validate properties of the objects which belongs to a collection of a ViewModel via IDataErrorInfo interface

I have a MyViewModel, which contains scalar properties and collection properties. public class MyViewModel : System.ComponentModel.INotifyPropertyChanged, System.ComponentModel.IDataErrorInfo ...
0
votes
2answers
662 views

IDataErrorInfo based validation not working

Edit: This is a simplified update of the original version of this post. In WPF I implemented a UserControl (called 'NumericTextBox') which uses a *DependencyProperty 'Value' that is kept in sync with ...
0
votes
1answer
617 views

Business logic validation with Entity Framework and IDataErrorInfo

I'm working on a project using WPF and MVVM with Entity Framework 4.3, and I would like to know how can I perform business logic validation implementing the IDataErrorInfo interface. All of my models ...
0
votes
1answer
156 views

Accessing IDataErrorInfo without ValidatesOnDataErrors

I have a Datagrid I want to provide some data validation, but I need to avoid the locking mechanism that usually occurs when a cell is in an invalid state. Is there a way to bind to the ...
0
votes
1answer
182 views

Styling Label Based on Validation of Another Control

I would like to have the text of the Label next to my ComboBox turn red when the ComboBox is in error, but with how I currently have it set up the Label's text color only updates on the initial load ...
0
votes
0answers
227 views

WPF MVVM XamDataGrid Validation IDataErrorInfo

I'm trying to implement XamDataGrid on a WPF MVVM architecture. Wanted some one to help me around with the Grid Validations. And before you re-direct me, I have already checked the blog post of Karl ...
0
votes
1answer
320 views

IDataErrorInfo validation not triggered while using data template in UI

I am trying to build my application settings page depending on the properties exposed by ViewModel. I'm using .Net 4.0 with MVVM. ViewModel exposes single Collection of "group of setting values". ...
3
votes
1answer
155 views

ValidateWithoutUpdate doesn't ever execute configured ValidationRules?

I'm trying to understand why calls to BindingExpression.ValidateWithoutUpdate() doesn't actually do what it advertises. I've got some cranky validation (I've removed the boring details from my sample ...
1
vote
1answer
191 views

How to force a ItemsControl fo validate row changes?

I have a Model called PhoneModel and a ViewModel called PersonViewModel that both of them impelements INotifyPropertyChanged and IDataErrorInfo. In PersonViewModel, i have a ...
3
votes
1answer
463 views

WPF expander validation error not shown when expanded

Using MVVM. I have a datatemplate which I am using to display an expander with some controls in per object. <DataTemplate> <Expander ExpandDirection="Down" IsExpanded="False"> ...
1
vote
0answers
123 views

IDataErrorInfo issue when control is created as 'Collapsed'

EDIT I'm adding additional code for clarification... I am having an issue with getting the IDataErrorInfo error indicator to display on a control that initially is created "Collapsed", then is made ...
0
votes
2answers
1k views

WPF: Validation.ErrorTemplate not displaying

I have a template for displaying a red border and an error message around controls. It works (tested on TextBoxes and ComboBoxes). But on two particular comboboxes they don't. Well let's see what's ...
1
vote
1answer
250 views

how indexer is called in Idataerrorinfo?

In MVVM IDataErrorInfo is used for validation. In this on which time indexer check value can not get. and after calling it how it check value i can not get.the code is here. what is the value passed ...
0
votes
1answer
1k views

IDataErrorInfo() interface in WPF MVVM

I want to notify the validation errors when i give wrong input in the Rows of the DataGrid. <DataGridTextColumn Header="Name" Binding="{Binding Path=Name, ValidatesOnDataErrors=True, ...
2
votes
1answer
603 views

Getting Focused Element in WPF throgh XAML

I want to display the errors (IDataErrorInfo.Errors) in One place of screen instead of showing Error Content near by.. So For that I have placed textBlock in End of the Form.. How Can I Get Current ...
0
votes
1answer
318 views

Validation with exceptions vs IDataErrorInfo and the new INotifyDataErrorInfo

I'm trying out different ways of validating and I'm having a problem with the new INotifyDataErrorInfo-interface. When writing in for instance a bound textbox that only accepts 10 chars. I write 11 ...
1
vote
0answers
212 views

WPF bug when using DataGrid and IDataErrorInfo?

I think I have stumbled upon a bug in WPF when textboxes in a DataGrid contains invalid data and are disabled. When the textboxes contain invalid data and are disabled I can make the data (and ...
1
vote
2answers
292 views

Display IDataErrorInfo Error in Textblock instead of Tooltip

I've seen lots of examples of how to display an error in a tooltip of a textbox. Can someone give me an example of how to display an error in a separate TextBlock instead of in a tooltip of the ...
5
votes
2answers
477 views

Error template is displayed above other controls, when it should be hidden

I'm trying to implement validation in my WPF application using the IDataErrorInfo interface, and I've encountered a not-so-desirable situation. I have this template which is used when a control fails ...
3
votes
4answers
1k views

IDataErrorInfo - Initially ignore the errors when view is first loaded

I am trying to validate my model class using IDataErrorInfo as given below. //Validators public string this[string propertyName] { get { string error = null; if (propertyName == ...
3
votes
2answers
2k views

How to force validation errors update on View from ViewModel using IDataErrorInfo?

I have a MVVM-based Window with many controls, and my Model implements IDataErrorInfo. There is also a SaveCommand button, which performs validation by analysing Model.Error property. The view ...
1
vote
1answer
223 views

Add IDataErrorInfo to entities

I'm developping a WPF Application With MVVM. I'm using Entity Framework to generate entities from data base. I want to implement a validation to my UserControls (binded to my entities) by implemening ...

1 2 3 4