how to pass a list from the .groovy level to screen.xml level?

2010-02-22 Thread Patrick
How can I pass my variables (I need to pass a list) from the .groovy level to the screen.xml level? I'm going to create X forms where X is the size of my list. Then I am going to populate the forms with the list elements. Thanks in advance Patrick

Re: how to pass a list from the .groovy level to screen.xml level?

2010-02-22 Thread Scott Gray
Hi Patrick, Just assign them to the context map in groovy like this: context.myListOfStuff = myGroovyList; Anything assigned to the context map will be available to the screen once the script has run. Regards Scott HotWax Media http://www.hotwaxmedia.com On 22/02/2010, at 4:08 PM, Patrick