7 Answers, 1 is accepted
All the best,
Maya
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
You can change the appearance and the visibility of your Validation as you edit the template of a TextBox in Microsoft Expression Blend. Working with the <VisualStateManager.VisualStateGroups> gives you the opportunity to define your own style of the Validation or to remove it with the Property "IsEnabled = False".
Another idea for working with validation is proposed in this blog post. However, here you deal with it validation on property/cell level via DataAnnotaions, but it might be helpful for your project.
Maya
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
For the time being there is no property that can be set in order to remove the validation. What you can do is to use a custom template via CellEditTemplate property of a certain column of the GridVew.
I am attaching you a sample project so that you can see and test the proposed solution. The Validation is removed for the first column.
I hope this helps.
Maya
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
You can remove the appearance of the validation pop-up window, but there is no way to remove the validation as a whole.Thus, if you define your field to be "int" you can change its value with another 'int" value, but you cannot insert "string" for example (as it is the case with the first column of the grid in the project I have sent to you).
We will work on the case of bypassing a custom validation (for example to escape validation for a condition if a value is between certain limits as in the case: -50<x<100 ). However, this will be probably available in the next Service Pack.
Maya
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.