I have the following <b-form-checkbox>
inside a <b-table>
:
https://jsfiddle.net/fmattioni/L269rd7s/
Here is what I am trying to achieve:
1 - table starts with all checkboxes checked: this I can easily achieve through checked="true"
.
2 - as an example, try to uncheck a random box.
3 - now change the date from the calendar.
4 - here is where my issue starts: once the date is changed, I would like to return all the checkboxes to their initial states, which means that all of them should be checked.
I would like to achieve this through one of these two different ways:
items
whether a column should be checked or not? This is what I tried to do in the following:
items: [
{id: 1, check: true,},
{id: 2, check: true,},
{id: 3, check: true,},
]
but I can't find a way to tell <b-form-checkbox>
to do that. As an example, I would like to have id: 2
initially set as check: false
and the other as check: true
. Is that possible?
tru
once the date changes.Any ideas?
Replace you #cell(check)="row"
to #cell(check)="{ item }"
<div id="app">
<div>
<b-form-datepicker
value='2021-04-25'
>
</b-form-datepicker>
<b-table
:items='items'
>
<template #cell(check)="{ item }">
<b-form-checkbox
v-model="item.check"
>
</b-form-checkbox>
</template>
</b-table>
</div>
</div>
In that way the component receive your item from the table component.
Your #cell
slot is containing more data such index
that neccessery for some else uses.