vote up -8 vote down star

How do I get a Row from a Gridview control in DevExpress?

flag
15  
@Gortok nice edit :) – lutz Aug 28 at 12:49
3  
I was also wondering why this was being closed as offensive. Got the answer when I saw the edit. Good work @Gortok – adamantium Aug 28 at 12:50
1  
Looks like dupe anyway: stackoverflow.com/questions/1125361/… – EBGreen Aug 28 at 13:16
2  
So, do we close this as a dupe of the other one, or the other one as a dupe of this? I'm thinking close the other one as a dupe of this one... – Adam Davis Aug 28 at 13:42
5  
@fc_devexpress: Welcome to StackOverflow! Probably one of the biggest factors for SO being so popular is that is is safe for work. Your post prior to the edit was pushing that boundary a bit and was completely unnecessary. While I agree that we'll all overreact at times in our lives, there is still zero excuse for your post. Send that to devexpress directly if you think it is constructive enough, but keep SO clean. – RSolberg Aug 28 at 15:12
show 11 more comments

3 Answers

vote up 8 vote down check

I did some digging for you, and it seems like this is the best way to do it.

link|flag
2  
thnx, but still wondering why implementing a bunch of classes to do something that was achieved with a single line of code? Isn't it stupid, even why it MAY be performant?!?! – fc_devexpress Aug 28 at 13:23
4  
No doubt. I'm not being glib, but perhaps you shouldn't use the DevExpress tools if they aren't easy to implement? Why not use a control that is easy to implement and extend? ASP.NET's ListView control will give you a lot of power, and is relatively easy to implement. – George Stocker Aug 28 at 13:27
vote up 2 vote down

What are you trying to achieve? Do you want to get instance of object displayed as grid row? If so, try GridView.GetRow() method.

link|flag
vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.