Versão atual:

Switch Button com valores definidos (true ou false)

Boa tarde,

Tenho o seguinte código usando o switch button mas o valor permanece 'false' mesmo após a alteração do switch. Alguém tem alguma ideia?

HTML

<div class="col-sm-1">
   <label for="switchbutton">Downtime</label><br />
   <input id="switchbutton" type="checkbox" data-off-color="danger" data-on-color="success" name="switchbutton" value="false">
</div>

Javascript

$().ready(() => {
   var switchButton = FLUIGC.switcher.init('#switchbutton'); 
   FLUIGC.switcher.onChange('#switchbutton', function(event, state) {
      if (state === true) {
         this.value = 'true';
      } else if (state === false) {
         this.value = 'false';
      }
   });
});

Versões (3):

Ver a versão formatada

Switch Button com valores definidos (true ou false)

Comentário

new question