Hi!
I'm new to telerik components so this is propably very easy.
Could somebody show me how to add a RadDatePicker to Radgrid datefield.
I need the datepicker when in inline editmode.
I'm only interested in how it's done in codebehind (vb.net)
The snippet below shows how i fill the RadGrid and it works fine.
I'm new to telerik components so this is propably very easy.
Could somebody show me how to add a RadDatePicker to Radgrid datefield.
I need the datepicker when in inline editmode.
I'm only interested in how it's done in codebehind (vb.net)
The snippet below shows how i fill the RadGrid and it works fine.
Private Sub test() With tabell .Columns.Add("Test") .Columns.Add("TEST!") .Columns.Add("KNamn") .Columns.Add("W_Name") .Columns.Add("W_Message") .Columns.Add("date") .Columns.Add("Post_ID") End With ' sql connection goes here.......
Dim r As DataRow While SQLReader.Read r = tabell.NewRow r.Item(0) = (SQLReader("kundNr")) r.Item(1) = (Roomname.Dequeue.ToString) r.Item(2) = (SQLReader("Kund_Namn")) r.Item(3) = (SQLReader("Welcome_Name")) r.Item(4) = (SQLReader("Welcome_Message")) r.Item(5) = (SQLReader("date")) ' here i need a RadDatePicker r.Item(6) = (SQLReader("Post_Id")) tabell.Rows.Add(r) End While SQLReader.Close() SQLConn.Close()
RadGrid1.DataSource = tabell RadGrid1.DataBind() End Sub