Expand my Community achievements bar.

Remote Field

Avatar

Former Community Member
Hi,

I do not know if I´m on the right forum, if no please tell me.



I´m new around Live Cycle, but I need to do the following:



I´m able to make a lot of field, drop down and program that ones.

The problems is that for example I need to type my name in 3 fields.

Is it possible to type my name in just 1 field, the 2 other fields fill automaticaly??

How to do it??



Thank´s for any advice.



Gustavo.
2 Replies

Avatar

Level 9
Hi Gustavo

You're on the wrong forum, please post instead on the LiveCycle Designer forum.



There are several ways to do what you're wanting:

1. In the first name field, on the exit event, have some javascript like this:

field2.rawValue = this.rawValue;

field3.rawValue = this.rawValue;

2. Make all your "name" fields have the same name (e.g. TextFieldName), and set the binding to "Global".

3. Bind all fields to the same data. This is an advanced technique.



Howard

http://www.avoka.com

Avatar

Former Community Member
Hi Howard,



Thank´s a lot for the explanation. Thank´s very much, I´ve earned it...



Now, I have one more problem:



I need to do the following:



One field there will be a drop down menu which for example has some itens like battery charger and memory card.

When anyone selects memory card, other field should display the value, for example 40 dollars.



How to do it???



Thnak´s again.