My Grid is populated with the following code:
cn.Open()
Dim dt As New DataTable
Dim da As New SqlDataAdapter("SELECT * from MyTbl WHERE [JobID] = '123', cn)
da.Fill(dt)
Me.RadGridView1.DataSource = dt
When I edit a cells contents and then move to the next row. I should be able to send updates to SQL. I tried using the event RadGridView1_CurrentRowChanged and then:
Dim strColValue As String = e.OldRow.Cells("myCol").Value.ToString
But the Old Value is returned.
How do I get an efficient 2-way link established between RadGrid & SQL?
Thanks in advance for any help.
-New Telerik Winforms user
cn.Open()
Dim dt As New DataTable
Dim da As New SqlDataAdapter("SELECT * from MyTbl WHERE [JobID] = '123', cn)
da.Fill(dt)
Me.RadGridView1.DataSource = dt
When I edit a cells contents and then move to the next row. I should be able to send updates to SQL. I tried using the event RadGridView1_CurrentRowChanged and then:
Dim strColValue As String = e.OldRow.Cells("myCol").Value.ToString
But the Old Value is returned.
How do I get an efficient 2-way link established between RadGrid & SQL?
Thanks in advance for any help.
-New Telerik Winforms user