Hi Adam,
Thanks for contacting Syncfusion.
We can clear the selection of rows or cells by using the method
clearSelection, please find the below code example for how to use this in application.
<button v-on:click="clearSelection">Clear Selection</button>
export default {
//...
methods: {
clearSelection: function(event) {
this.$refs.gantt.ej2Instances.selectionModule.clearSelection();
}
}
}; |
Please find the below sample link.
Thanks,
Gurunathan