BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<template>
<div>
<ejs-gantt ref='gantt' :dataSource="data" id="GanttContainer" :cellSelected="cellSelected" :cellSelecting="cellSelecting">
//...
</ejs-gantt>
</div>
</template>
<script>
//...
data: function () {
return {
//...
selectionSettings:{
mode: 'Both',
}
};
},
methods:{
cellSelected:function (args) {
},
cellSelecting:function (args) {
}
}
};
</script> |