Re: [CForms] building dynamic selection list with javaflow

2005-09-16 Thread footh
Thanks, that did the trick. --- Jason Johnston <[EMAIL PROTECTED]> wrote: > > I've read the doc about how to create dynamic > > selection list data in formscript a la this: > > > > var data = new Object(); > > > > data.cityList = new Array(2); > > data.cityList[0] = {value:"AL", label:"Alabama"};

Re: [CForms] building dynamic selection list with javaflow

2005-09-16 Thread Jason Johnston
> I've read the doc about how to create dynamic > selection list data in formscript a la this: > > var data = new Object(); > > data.cityList = new Array(2); > data.cityList[0] = {value:"AL", label:"Alabama"}; > data.cityList[1] = {value:"AK", label:"Alaska"}; > > form.showForm("flow/myform.form",

[CForms] building dynamic selection list with javaflow

2005-09-16 Thread footh
I've read the doc about how to create dynamic selection list data in formscript a la this: var data = new Object(); data.cityList = new Array(2); data.cityList[0] = {value:"AL", label:"Alabama"}; data.cityList[1] = {value:"AK", label:"Alaska"}; form.showForm("flow/myform.form", data); ...and I'