selectField(s, arr)

if I change the arr variable the selectbox doesn’t change.

Submitted by Terje Pedersen on 9 March 2011 at 20:44

On 9 March 2011 at 20:47 Zef Hemel commented:

If you assign arr to itself after your modifications (e.g. push() calls), does that fix it?

For instance:

arr.push(("lkef", "lkjef"));
arr = arr;

On 9 March 2011 at 20:57 Terje Pedersen commented:

Didn’t work. I also tried to reload() but that didn’t change it neighter.

Log in to post comments