I use Telerik RadGridView in a WPF application that has two editable columns - quantity and cost. I created a model to display this data in a grid.
eg ::
[HasSelfValidation] class Item { public int Quantity{get;set;} public decimal Cost{get;set;} [SelfValidation] public void ValidateQuanity_Cost(...) {
I bind the ObservableCollection of the type element to the telerik GridView. Although the check works fine, I want to highlight a line that generates an error and also displays a tooltip. Can anyone help to achieve this?
source share