Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Date in two fields

Avatar

Level 3

Is there a way to select a date from a date field, have it dispaly in that field and also display in another field.

I tried adding sum(fieldname) to second field i wanted the date to show in but it displayed a 0.

Thanks.

2 Replies

Avatar

Level 10

Use the same name for both fields and set the binding to global.

Avatar

Level 4

Hello,

If you have two DateTime fields named as DateTimeField1 and DateTimeField2,

then in the exit event of the DateTimeField1 object you can write the following script:

DateTimeField2.rawValue = this.rawValue;

Thanks,

Deb