top of page
Enable-Button (check)
Index
CODE

$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();
}

CODE

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