Problem with meteor dynamic update of datatable url

I am using the meteor package and try to dynamically change the url of the datatable with a different cursor and I got “Not unique ID” error message.
var cursor = myCollection.find({name: 'dana'}, { sort: {name: 1}}); var urlProxy = webix.proxy("meteor", cursor); this.datatable.load(urlProxy);

Thanks

You can try to use

this.datatable.clearAll();
this.datatable.load(urlProxy);

First line will clear datatable before loading a new data

In this case I had another error: “Not existing ID in remove command3243243”