Hi all,
I have 2 DCT and value of one field of DCR(from first DCT) is to use to populate the field of second DCT. I mean
1) Standardize on the names of the DCR in 'type A'. Something like:
type_a/data/gifs #for gifs
In first DCT, I have one field( named as images) in replicant
Then, in my 'type B' DCT, I have an inline callout that will parse the DCR from Type A and will retrieve the value of all images.
Let's say I want 'type B' DCT to provide a drop down list of available images.
In my DCT, I have:
< select size="1" required="t">
< option label="Please Select" value="" selected="t" />
< inline command="/teamsite/iw-home/local/templating/scripts/get_images.ipl" />
< /select>
my get_images.ipl is just a simple perl script that is going to parse the file:
/iwmnt/default/main/your/branch/here/STAGING/category/typeb/data/gif
Everything is working fine till I try to edit the DCR of Type B. Because though i have selected and saved one image value in the drop down, when i try to edit the dcr(of type

, no value is found seleted in drop down.
Can anyone give me solution to fix it.