Hello
I'm using the kendo Vue wrapper to implement a grid. I want to have the first column of my grid to be a checkbox column so i can select rows. As the docs suggested I wrote a selectable="true" kendo grid colomn. But no checkboxes are visible, I checked the DOM and it's because there are only input type checkbox tags with class "k-checkbox" added and not the nessecary labels with class "k-checkbox-label". I'm not sure if I'm missing something or the kendo grid column with binding :selectable isn't working properly.
<kendo-grid ref="vehicleGrid" :data-source-ref="'vehicleDataSource'" :groupable="true" :sortable="true" :resizable="true"> <kendo-grid-column :selectable="true" :width="50"></kendo-grid-column> ...Other columns....</kendo-grid>
Thanks for helping me!
Kind regards
