Hi.
I am showing a RadScheduler and on dropdown selection i want to refresh it.
Also when I move to another date and using the NavigationCommand event I call the refresh routine when I take the values from the dropdownlist and pass them to my Objectdatasource, in few words something like
I am showing a RadScheduler and on dropdown selection i want to refresh it.
Also when I move to another date and using the NavigationCommand event I call the refresh routine when I take the values from the dropdownlist and pass them to my Objectdatasource, in few words something like
| Dim curLogon As Logon = WebUtils.GetLogon(Me) |
| If Me.ddlMedicos.SelectedValue.Trim().Length > 0 Then |
| Dim arrString() As String = WebUtils.UnJoinCedula(Me.ddlMedicos.SelectedValue) |
| Me.RadSchedulerCita.DataSource = CitaMedicoList.List(curLogon, |
| Me.ddlSucursal.SelectedValue, |
| Me.ddlEspecialidad.SelectedValue, arrString(0), |
| arrString(1), Now()) |
| Me.RadSchedulerCita.Rebind() |
| End If |
But the RadScheduler does not get refresh .... :-(
Any help ?