<ejs-gantt ref="gantt"
id="GanttContainer"
//...
:allowKeyboard=false>
</ejs-gantt> |
<template>
<ejs-gantt
//...
:created= "created"></ejs-gantt>
</template>
<script>
//...
export default {
methods: {
created: function(args){
this.$refs.gantt.ej2Instances.treeGrid.grid.keyConfigs.tab = ""
}
},
};
</script> |
S.No |
Query |
Syncfusion Comments | |
1
|
it has strange behaviour (the browser tab is selected, see attachment).
|
This is the default behavior of browser. When tab key is disabled in control level the browser tab will be selected. We can prevent this by using preventDefault method. Please find the below code example.
| |
2
|
how can I disable the 'insert' button?
|
To disable ‘insert’ button, we can pass empty string to the keyconfigs.addRow in the created event as like the below code example.
|