How do I get a Row from a Gridview control in DevExpress?
|
|
|||||||||||||||||||||
|
|
|
I did some digging for you, and it seems like this is the best way to do it. |
||||||||
|
|
|
What are you trying to achieve? Do you want to get instance of object displayed as grid row? If so, try GridView.GetRow() method. |
|||
|
|
|
|
if you're not trying to do what przemaas has to say, then operate on the object that you're binding to (cause really, that's what the xtragrid is all about). If it's an xpcollection(T) that you're binding to, then any operations done on the records within it will propagate to the grid through the PropertyChanged event on the xpcollection. If you're binding to a custom collection, then just inherit it from IBindingList and/or implement INotifyPropertyChanged. |
||
|
|
