samedi 28 septembre 2019

Linking checkbox to list item in Vue.js

I have a list element Scholarship in Sharepoint of type "Yes/No (Checkbox)".

Scholarship element

So, I created a checkbox via Vue.js:

<div class="row">
       <div class="d-inline col-lg-6 col-md-6 col-sm-6">
          <b>Scholarship Player</b>
       </div>
       <div class="d-inline col-lg-6 col-md-6 col-sm-6">  
          <input type="checkbox" id="checkbox" v-model="Scholarship"> </div>
       </div>

Checkbox

The problem I'm having is that it shows me the checkbox and next to it "true". When I change the list element to false, it will show me "false" and the checkbox will remain the same. This means that it didn't link the list element "Scholarship" to the checkbox.

How can I link/connect my list element with the checkbox? (Meaning that when the checkbox is checked, the list element will be true and whenever the checkbox is not checked it will be false)




Aucun commentaire:

Enregistrer un commentaire