top of page

Enable-Button (check)

Index

CLOSE.png
Button-1
START
CLOSE.png

CODE

CLOSE.png

$w.onReady(() => {

    $w('#checkbox1').checked=false

    if ($w('#checkbox1').checked==true) {

        $w('#button1').enable();

    } else $w('#button1').disable();})

 

​

​

​

​

​

export function checkbox1_change(event) {

    if ($w('#checkbox1').checked==true) {

        $w('#button1').enable();

    } else $w('#button1').disable();

}

001.png

CODE

CLOSE.png

export function dropdown1_change(event) {console.log($w('#dropdown1').value)

    if ($w('#dropdown1').value==1) {$w('#BTNstart').enable()}

    else {$w('#BTNstart').disable()}

}

bottom of page