Checkbox store value not able to store

Hi,

I am trying to have a checkbox value in a form set in the database.

Super basi thing, but clearly I am missing a step (or 2 ;))

The value is bering read correctly.

unchecking the checkbox and save the form data does not pass along a value for the checkbox. The ‘ad_active’ Form Data attribute doesn’t show up in the list of values in the browser/tools

Checking the checkbox produces an error where the value of ‘ad_active’ is, well … nothing (see image)

So, does anybody have a suggestion I might check or change?

You need to give the checkbox a value for when it is checked. In my case I have chosen 1 for true and 0 for false.

<input class="form-check-input" type="checkbox" value="1" id="upd_live" name="live" dmx-bind:checked="ddGallery.data.GalleryLive == 1">

Also bind the value for when the checkbox is checked.

Hi Ben, thanks for your reply.
Where do you bind this checked data to?

I mean, in your example what is ddGallery.data.GalleryLive?

One step closer, I managed to get the value to become 1 (or on) in the database when the checkbox is checked.

Unchecking the checkbox is not working yet

I have mine coming from the Data Detail, the same as all the other fields in the form.