Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

vue.js - bryntum scheduler showCheckAll doesn't work

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...