I am using Grid1 to display data and Grid2 To display Transpose
============== From RadGrid1=================================
id____ComboBoxColumn1_____ComboBoxColumn2______ComboBoxColumn3
1 PTN KKA DDK
==============Want to display RadGrid2======================
HeaderLabel __________ HeaderCboCustomerID
ComboBoxColumn1 PTN
ComboBoxColumn2 KKA
ComboBoxColumn3 DDK
UpdatePanelInfo(Me.Grid1.CurrentRow)
//' I want to transpose Grid1 to display data Grid2 too.
End Sub
**How i can ?
============== From RadGrid1=================================
id____ComboBoxColumn1_____ComboBoxColumn2______ComboBoxColumn3
1 PTN KKA DDK
==============Want to display RadGrid2======================
HeaderLabel __________ HeaderCboCustomerID
ComboBoxColumn1 PTN
ComboBoxColumn2 KKA
ComboBoxColumn3 DDK
- I want to transpose Grid to display data on Event CurrentRowChanged
UpdatePanelInfo(Me.Grid1.CurrentRow)
//' I want to transpose Grid1 to display data Grid2 too.
End Sub
**How i can ?