Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
149070 | Nov 13,2019 10:59 AM UTC | Dec 12,2019 06:51 AM UTC | Vue | 8 |
![]() |
Tags: Gantt Chart |
<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.
|
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.