Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

WPF Binding : Use DataAnnotations for ValidationRules

I have read a lot of Blog post on WPF Validation and on DataAnnotations. I was wondering if there is a clean way to use DataAnnotations as ValidationRules for my entity. So instead of having this ...
5
votes
5answers
11k views

Using WPF Validation rules and disabling a 'Save' button

I have a page where a few textboxes cannot be empty before clicking a Save button. <TextBox... <TextBox.Text> <Binding Path ="LastName" ...
4
votes
2answers
1k views

Validation Framework in .NET that can do edits between fields

From my experience many validation frameworks in .NET allow you to validate a single field at a time for doing things like ensuring a field is a postal code or email address for instance. I usually ...
3
votes
2answers
94 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
1answer
202 views

WPF Binding.ValidationRules at Runtime

I'm in the process of writing validation Rules to various controls in XAML. I would like to attach validationRules to controls at runtime and not in XAML. I was thinking of using Converters . but any ...
2
votes
1answer
65 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
2answers
85 views

ValidationRules within control template

I have control thats inherits from textbox public class MyTextBox : TextBox This has a style <Style TargetType="{x:Type Controls:MyTextBox}"> one of the Setters is <Setter ...
2
votes
3answers
193 views

ValidationRules without binding

I want to use the ValidationRules (and it's UI effects) on the textbox without actually binding anything to the textbox. I want to use the textbox for some input that doesn't bound to anything ...
2
votes
1answer
354 views

WPF validation - ValidatesOnTargetUpdated

I have a number of textboxes in a WPF app on which I have set up some validation. On load the app deserialises a class onto which the WPF window's controls are bound. I have a ValidationRule that ...
1
vote
3answers
60 views

How to set a null value to a property when it throws an error?

Binding is so powerful in WPF. Supposed that we have a Number property (nullable int) and is bound to a textbox. I realized when it throws an error, the property has the last correct value. I mean ...
1
vote
2answers
80 views

wpf validation rules problem with textbox

I created a class IntegersValidationRule which inherits from ValidationRule. Now I don't know what code should I write in XAML. That's what I have: <TextBox Name="defaultTxt" Height="23" ...
1
vote
1answer
678 views

C# WPF Bindings, ValidationRule and default value

I new to WPF and C# and I have a problem with my application. I have a TextBox which I want to have a ValidationRule on to validate the text. Now I want to have a default value in the TextBox but i ...
1
vote
2answers
199 views

WPF ValidationRule: How do I know what I am validating?

Ok, so I tried to create a ValidationRule to ensure that the set width of an item is within a given range for that item. Here is my attempt: public class AdjustWidthValidationRule : ValidationRule { ...
1
vote
0answers
72 views

WPF ValidationRule bug? Backspace is ignored. Is there a work around for this?

My work mate is having this problem as well, we haven't had a chance to do much in the way of investigation. Steps that reproduce the problem in a textbox in a datagrid with a validation rule ...
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
445 views

Multiple Validation Rules and Validation Templates in WPF

Does anyone have a tactic for dealing with multiple validation rules and templates for those validation rules. Example: I want to have two validation rules (required & data) I want either... ...
1
vote
1answer
716 views

Jquery validate: re-validate a validated form after checkbox changed with different rules

I am trying to validate a form with a couple of elements being required if a checkbox is NOT checked. Now if I submit the form the rules fire - and then I check the checkbox on - the validation ...
1
vote
1answer
1k views

Programatically add ValidationRules to WPF DataGrid when autogenerating columns

I want to do this in the AutoGeneratingColumn event: <my:DataGridTextColumn Header="CompanyName"> <my:DataGridTextColumn.Binding> <Binding Path="CompanyName"> ...
1
vote
7answers
5k views

Using Validation in WPF With Dependency Property and Style Triggers

I am trying to use Validation in WPF. I created a NotNullOrEmptyValidationRule as shown below: public class NotNullOrEmptyValidationRule : ValidationRule { public override ...
0
votes
2answers
52 views

Validating a nullable int using a IValueConverter

I'm trying to perform a validation property. We have a nullable property called: public int? Number { get { return _number; } set { if (_number != value) { ...
0
votes
3answers
59 views

How to validate data in WPF and set default value?

I'm trying to perform a validation property. We have a nullable property called: public int? Number { get { return _number; } set { if (_number != value) ...
0
votes
3answers
47 views

How to set a default value when produces an error using validation rules?

I'm using Validation Rules to show custom messages, and INotifyDataError for the business rules. This one part of my code: public class ResponseValidation : ValidationRule { public override ...
0
votes
2answers
50 views

In Codeigniter, how to pass a third parameter to a callback (form validation)?

I am currently using the Form Validation class (on Codeigniter) and setting rules. It works like this with two parameters (codeigniter.com/user_guide/libraries/form_validation.html): ...
0
votes
1answer
41 views

WPF TextBox ValidationRule binding

I need to add ValidationRule to the TextBox programmatically in WPF. I'm trying something like: Binding binding = BindingOperations.GetBinding(myTextBox, TextBox.TextProperty); ...
0
votes
1answer
43 views

Add ValidationRules into a single xaml line OR shorthand ValidationRules

I'm using a PasswordBox which exposes a dependency property such that I can bind to it. The problem is that by using it like so, I cannot shorthand the Binding.ValidationRules to this syntax: ...
0
votes
1answer
83 views

jquery validate - check which rule is not fullfiled

I have a form with several fields and using jQuery validation plugin. My input has several rules: { required : "#somecheckbox:not(:checked)", regex : "\d{10}", maxlength : 10, remote ...
0
votes
2answers
49 views

how to implement constraints on a web application workflow based on rules

We have the following problem in our web application. There is a workflow for creating an order on the application : entering informations about the customer (one web form) entering informations ...
0
votes
0answers
103 views

How to use the Jqueary validation method in master page by adding Custom rules for required dependency-expression in content pages

I am Using jQuery Validation Plugin 1.8.1. I have set the validation code in my master page like this <script type="text/javascript"> $.validator.setDefaults({ invalidHandler: ...
0
votes
0answers
154 views

Rules set in Drools not working if the value for rule is having a space.Is it possible to accommodate space in rules?

Rules set in Drools Guvnor not working if the value for rule is having a space.Is it possible to accommodate space in rules? For eg: if a rule is set with keyword = Test Plan then even if i pass the ...
0
votes
1answer
496 views

Adding an ExceptionValidationRule to a Binding in code

I have been developing an ErrorProvider control that inherits from Decorator. It validates any elements within the control that are bound to something. It loops through every binding and within a ...
0
votes
1answer
59 views

Can we set property of source object, on validation?

I have a wpf-mvvm application. In the below code, "PartBPremiumBuydown" is an instance of a class. which has two properties => 1. Value. and 2. HasValidationError. Property "Value" is used for ...
0
votes
1answer
428 views

WPF validation rule problems in a datagrid

I'm having a problem using a validation rule in a data grid: I want to use a ValidationRule on a DataGridComboBoxColumn, I used this example for guidance, in particular the BindingGroup stuff. This ...
0
votes
1answer
439 views

problems with validation rule

I am trying to get a validation rule to return an error. I implemented IDataErrorInfo in my model, which contains my business object properties and messages to return in the event validation fails. I ...
0
votes
3answers
682 views

DataAnnotations [Required] Attribute doesn't cause Exception to be thrown

NET MVC application in which I use data annotations to add validation to some fields: [Required] [DisplayName("Course Name")] string Name { get; set; } However this doesn't seem to work ...
0
votes
1answer
984 views

BindingGroup with multiple (failing) ValidationRules

I ran into a problem today at work wherein I have a BindingGroup that has multiple ValidationRules that are failing simultaneously. Problem is, I get an ArgumentException bubbling up from withing ...
0
votes
1answer
168 views

Multiple Validation Scenarios for EntLib - .resx style?

Currently I've got a set of EntLib validation rules defined in my classes. The rules will later change based on the client. What I'd like to do is retain my classes, and simply call the different ...
0
votes
1answer
262 views

How to use the previous value when validating a WPF DataGrid cell entry?

I have a WPF DataGrid. I would like to restrict the values a user may enter in a particular column, such as the following: Column A values may only increase (new value > old value). Column B values ...
0
votes
1answer
583 views

Can you use ValidationRules on ListBox.SelectedItems?

I want to use ValidationRules to verify that a few ListBox controls have at least one item selected. I tried doing it this way: <ListBox ItemsSource="{Binding Path=AvailableItems}" ...