rajesh.lch
21st May 2022, 22:10
Hi All,

I have a requirement in extensions to zoom and fill two cdf's , if i zoom cdf field "A" and select a record, it should fill cdf field "B" as well. Can any one help me to acheive this.

Regards,
Rajesh

JaapJD
23rd May 2022, 09:21
You can implement a session extension for the session you are zooming to. In the After Program event, code the following:

if sel.num.selected() = 1 then
export("<CDF field you want to fill>", <table field in zoom session>)
endif