Hello,
I am trying to set up a WPF RadGridView with cell validation. I have bound the "CellValidating" event, and within it, when data fails a check, I set the "ev.ErrorMessage" to the message I want displayed, and set "ev.IsValid" to false. This marks the input element with a red border and a little triangle in the upper right corner. When mousing over the triangle, it shows the tooltip.
What I want is for that tooltip to remain shown at all times the same way that the errors are displayed when an exception is thrown while parsing data. Is there a way of achieving this?