views:

118

answers:

2

Hello! This may sound stupid....I've followed Scott Morrisons Blog and have implemented a silverlight datagrid and populated it with some data. My question now is, when I edit the datagrid and change some of the data, how do i then retrieve it back?! I guess what i'm trying to say is - does it get posted back somewhere!?

+1  A: 

Well, when you bind your columns of your data grid to the properties, you should specify that the binding is a two-way binding. This will update the back end data as the grid data is changed.

For a more thorough read, you should look at this article.

Johannes
+1  A: 

Following Brad Abrams MIX09 tutorials located on his blog has ALL the answers I could have possibly ever wanted when starting out with such a powerful framework. Brad's Blog

Goober