Avatar

Level 10

This can be done several ways.

1) Floating fields. This is the use case for floating fields (http://help.adobe.com/en_US/livecycle/9.0/designerHelp/000427.html) whereby you simply do data binding to an object defined as a floating field and embedded in a text object. Used the attached .xml as the form preview data file.

2) Sting concatenation on rawValue. You can treat the value of text objects just like the value of text field objects. For example, the script below is the exit event on a numeric field and it inserts the number in a text object.

// form1.page1.nf::exit - (JavaScript, client)


form1.page1.txt1.rawValue = "This is a text field and the value " + this.rawValue + " is from the numeric field.";

Steve