Datatable reload

How can I reload/refresh the content of a datatable?

i.e:

view:“datatable”,
id:“list”,
url:‘list.php&date=’

$$(‘calendar’).attachEvent(“onDateselect”, function(date){
$$(‘list’).url = ‘list.php&date=’ + date;
$$(‘list’).??? reload /refresh ???
}

thanks!

ooops, that’s easy:

$$(‘calendar’).attachEvent(“onDateselect”, function(date){
$$(‘list’).clearAll();
$$(‘list’).load(“list.php?date=” + myformat(date));
}