Reload 'collection' from database

Hi,

I use scheduler.serverList(“todo_id”), and I want it to reload an updated version of ‘todo_id’ from the database (I’m using an multiselect initial loading system).
I saw that I can use this function:
updateCollection(“todo_id”, new_collection)

but I wasn’t sure what to put for new_collection if I want it to be loaded from the database.

Hi,
if you load options as it shown in 22_multiselect_initial_loading.html example,
you can just reload scheduler’s data. Options will be updated as well
e.g.
scheduler.load(“data/events_multiselect_static.php”);

Thanks!