An update on sliders & switch buttons?

Hey guys, am I the only one that noticed we can’t add events to switch buttons and sliders ? That makes doing filter way much fun… Do you have any idea why we can’t add code to these elements anymore ?

Have a great day / night / life !

Hi,
We looked into it, it’s a bug on our end and we are working in it.
In the meanwhile you can add the event using code, check out this code for example:

$w.onReady(function () {
$w('#switch1').onChange((event, $w) => {
  console.log(event);
} );
});

Good luck :slight_smile: