Replacing Listbox data

Hi,

I have a listbox and a scheduler component on a page, when I try to replace their dataset through something like this the scheduler updates its data, but the listbox doesn't.

this.scheduler1.data = ${result.value};
this.listbox1.data = ${result.value};

How could I get this to work for the listbox?

Thanks in advance & kind regards
Moo

Maybe it will be better to bind the Data property to a page variable and update the property.

1 Like

This worked really well, thank you.