I believe that getWidget() is deprecated. You should use lookupWidget() instead. E.g.

nameWidget = form.lookupWidget("name");
nameWidget.setValue(name);

and with v2 of the javascript API, you could write:

var form = new Form("form1.xml");
var wid = form.getWidget();
wid.name.value = name;

HTH,
Bart.

-----Original Message-----
From: Gunter D'Hondt [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 26, 2004 11:40 AM
To: [EMAIL PROTECTED]
Subject: Re: pass a variable from flowscript into cfrom text input field

Widget nameWidget = form.getWidget("name"); 
nameWidget.setValu(name); 
Gunter 


"Philipp Rech" <[EMAIL PROTECTED]> 
26-10-2004 11:29 
Please respond to
[EMAIL PROTECTED]

To
[EMAIL PROTECTED] 
cc

Subject
pass a variable from flowscript into cfrom text input field







Hello,

how can i pass a variable from my flowscript into cfrom text input field (as
a default value)? In the Flow it would be like 

var name = "stefano";

and the CForm would be 

<fd:widgets>
� �<fd:field id="name" required="true">
� � �<fd:label>Name:</fd:label>
� � �<fd:datatype base="string"/>
� � </fd:field>

So when the user opens the page, "stefano" is written in the field. The
value has to come from the Flowscript that call the form and display
pipeline though! a simple document.form.name.value = name; wont work, eh?

Thank you very much! Danke!
phil



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to