| Hi Carlos, I use a multivalue field in one of my form with flowscript, where I read the values of the field in the valueChangedListener of another widget. Here's a piece of my form definitions (articleReceiver is the multivalue field widget): <fd:field id="triggerUpdate" status="hidden"> <fd:datatype base="string"/> <fd:on-value-changed> <fd:_javascript_> <![CDATA[ print("publication.triggerUpdate: " + event.source.value); if (event.source.value != null) { var values = event.source.lookupWidget("../articleReceiver").getValue(); print("Received " + values.length + " value(s)"); for (var i = 0; i < values.length; i++) { print(i + ": " + values[i]); } event.source.value = null; } ]]> </fd:_javascript_> </fd:on-value-changed> </fd:field> Hope this helps. Freek On 26-jan-2006, at 17:57, Carlos Maté wrote:
|
