(which just does not exist)
or some mysterious "external:Office_SilverThemeExternal":
x:Key="{telerik:ThemeResourceKey ThemeType=external:Office_SilverThemeExternal , ElementType=telerik:RadButton}"
After fixing that (renaming to my new local theme) still nothing works as expected, xaml-files are referenced but not found - if that is fixed some other obsucre errors pop up. After that I just gave up.
I am very disappointed - since telerik advertises that everything is easily and effortless to customize (in Blend even)
The documentation link that "should" probably describe how it is done the right way is down.
I would very much appreciate a step by step description on how to achieve this.
Thank you very much.
Kind regards,
Wolfgang
I'm using the MVVM pattern to build an application. I have a GridView that shows a collection of ViewModels that are connected to entities. These entities have validation implemented in them.
All this works, and the grid indicates cells that have validation errors by giving them a red border.
It is possible for the entities to be edited in another place in my application while they are displayed in the GridView. When this happens, these entities will be reloaded in the GridView and validated again. This works and I have verified that the validation errors are set as they should.
However, the GridView doesn't show the validation error immediately. If a cell that is visible has an error, the red border is not displayed. But if I scroll the GridView so that the cell is no longer visible, and then scroll it back into view, the red border appears!
Somehow I need to tell the GridView to update the validation errors. How can I do that?