RadScheduler.DataStartField =
Convert.ToDateTime(partyUnavailability.StartDate).ToString();
RadScheduler.DataEndField =
Convert.ToDateTime(partyUnavailability.EndDate).ToString();
RadScheduler.DataSourceID = partyUnavailability.Id.ToString();
I am giving all necessary fields to bind it control. Even though its not displaying on scheduler.
Please Correct me if I am wrong.
-Rama
Private Sub RadGrid1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadGrid1.PreRender
If Not IsPostBack Then
For Each item As GridItem In RadGrid1.MasterTableView.Items
If TypeOf item Is GridEditableItem Then
Dim editableItem As GridEditableItem = CType(item, GridDataItem)
editableItem.Edit =
True
End If
Next
RadGrid1.Rebind()
End If
End Sub
Any suggestions would be appreciated.
document.getElementById("RadGrid1_ctl00_ctl06_EditButton").focus();