Hi,
I have a multi select option in dcr. I want to reterive all the multi selected values in the presentation template.
I tried the following option but was not successful :
1) tried to split the selected values and put it in an array , but getting error :
my
@myValues = split(/\,\s/, iw_dcr_value('dcr.my.form.dropdown'));
2) Through the second way i am able to get the selected values, but the selected values are comming together ( comming as a single word), PT is taking the multi-selected values a single word.
my
@teamsArray = iwpt_dcr_list('manager.team_name');
foreach $teamName(
@teamsArray) {
iwpt_output(iwpt_dcr_value('$teamName'));
}
Please tell me how to get the multi-selected values in the PT.
Thanks in advance,
A.S.