How to reload or refresh the scheduler

Hi,

My scheduler contain one “View” button for viewing the events according to the filter, when I’m pressing the “view” button, I’m passing the filter values into init() function like “init(Key, List, Location,Option)” according to the parameters i’m calling the servlet, its giving the result back, but the scheduler contain previously filtered result plus new filtered result. I want to refresh the scheduler.
Any method is available for refreshing the scheduler ?

Regards,
Jobin K Joseph

scheduler.clearAll();//remove old data scheduler.load("some.jsp") //load new data

Thanks for the information.