Hi Daniel,
We have analyzed your query. In Gantt we can update data by Ej2Instances. Otherwsie we can update by ‘$refs’. Refs are Vue instance properties used to register or indicate a reference to HTML elements or child elements in the template of your application. If a ref attribute is added to an HTML element in your Vue template, you'll then be able to reference that element. Please find the code snippet below,
App.Vue
<template>
<ejs-gantt ref='gantt' id="GanttContainer"></ejs-gantt>
</template>
//……
select: function(e){
this.$refs.gantt.selectionModule.selectCell({ cellIndex: 1, rowIndex: 1 });
},
|
Please get back to us, if you need any further assistance on this.
Regards,
Karthikeyan Raja.