How to get selected row''s second columns value

I need selected row's second columns value in asp.net (vb.net) gridgrouping web control.

Syncfusion 6.4.0.15
VS2008


1 Reply

RS Rajarajeswari S Syncfusion Team December 22, 2008 09:43 AM UTC

Hi,

Thanks for using Syncfusion products.

Please refer the below code snippet for getting second column value from the selected record.

Dim record As Record = Me.GridGroupingControl1.Table.CurrentRecord
Dim value As String = record.GetValue("SecondColumnName").ToString()


Please let me know if you have any other concerns.

Regards,
Raji


Loader.
Up arrow icon