Amine Choukri
Amine Choukri

Reputation: 408

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

Upvotes: 0

Views: 449

Answers (1)

Fabio Junior Policeno
Fabio Junior Policeno

Reputation: 43

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

Upvotes: 1

Related Questions