How have you decided to handle data/control validation in your silverlight applications?
|
2
|
|
|
|
|
|
You can throw and capture data validation exceptions. To manage both of these types of errors need to take 3 steps:
Taken from here. Sample code:
|
||
|
|
|
Haven't done much of this yet personally, but some good starting points here. I imagine that these will come as part of a future release, but for now we'll probably have to roll our own using ASP.NET validators as a starting point. |
||
|
|
|
|
You might want to look at PostSharp, it makes attributing your client-side data model very simple. |
||
|
|
|
|
If you are experiencing problems trying to implement this, it's not because your code is broken, it's because the feature is broken in the DataGrid. Check out the article by Jesse Liberty here: http://silverlight.net/blogs/jesseliberty/archive/2008/10/22/it-ain-t-you-babe-a-not-a-bug-bug-in-datagrid.aspx |
||
|
|
