Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

the code of the config :

columns: [
        {
            type  : 'check',
            //text: "selectionner tout",
            showCheckAll : true,
            listeners:{
                toggle:(source,record,checked)=>{console.log('################'+checked);},
                toggleAll:(source,record,checked)=>{console.log('################'+checked);}
            }
        },
.... }

the checkbox in the header does not appear !! I tried working with selectionMode but it also doesn't work


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Testing your code on bryntum editor here: https://www.bryntum.com/examples/scheduler/basic/ it works fine: All columns checkbox

Please check if all bryntum files are included on your project, including css files.

Tested also on this example on local env and it works fine: https://www.bryntum.com/examples/scheduler/vue/javascript/advanced/dist/index.html

Here are the steps to how you have to install the Bryntum Scheduler on your project: https://www.bryntum.com/docs/scheduler/#guides/readme.md

And here you can see the steps to integrate with vue: https://www.bryntum.com/docs/scheduler/#guides/integration/vue.md

On Bryntum forum your can find more content about: https://www.bryntum.com/forum


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...