0

I'm new to asp.net devexpress tools. I want to identify column value of ASPxGridView component.

How can i do this.Please help me to solve this problem

(can we do as below/or similar way)

ASPxGridView.column[1]
Filip
  • 3,257
  • 2
  • 22
  • 38
TRS
  • 490
  • 2
  • 11
  • 29
  • 1
    ASPxDataView contains collection of items, not columns. Also, you tagged your question with aspxgridview. That was mistake or you need to get aspxgridview column value? – Filip Jun 11 '12 at 08:55
  • Thanks for your reply..ya.i need to get aspxgridview column value. – TRS Jun 11 '12 at 09:36

1 Answers1

1

You can get those values with:

ASPxGridView.GetRowValues
ASPxGridView.GetRowValuesByKeyValue

List of all ASPxGridView members.

Filip
  • 3,257
  • 2
  • 22
  • 38