This is a migrated thread and some comments may be shown as answers.

[Solved] Refresh radScheduler

1 Answer 330 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Yamil
Top achievements
Rank 1
Yamil asked on 20 Jun 2008, 09:50 PM
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 
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 ?

1 Answer, 1 is accepted

Sort by
0
Yamil
Top achievements
Rank 1
answered on 20 Jun 2008, 10:36 PM
Sorry my mistake.
I am passing now() as parameter so I get the same results all the time...!

Thanks
Tags
Scheduler
Asked by
Yamil
Top achievements
Rank 1
Answers by
Yamil
Top achievements
Rank 1
Share this question
or