Pagination's Properties some are Missing

Hi Wix code

Kindly check the pagination as it seem the onchange and onclick function is no longer working or seen on the properties.

It says onclick/ onchange is not in pagination properties. Only shows on properties box is Collapse and Expand on load.

Thanks,
DA

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('#element').onChange((event, $w) => {
  console.log(event);//place your code here
} );
});

Good luck :slight_smile: