allows you to sync two copies of data (all or just a part of it) from one DataCollection to another
| source |
//full copy
$$('list').data.sync(data);
//partial copy
$$('dview').data.sync(data, function(){
this.filter(function(data){
return data.year > 1994;
});
});