Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
assign replicant value to a variable
vinylrecord
i have dcr which uses replicants to accept linkname, linkedpage n group to which this link belong.
without replicants we assign value from dcr using this expr :
but if i want to assign the value of rep.GROUP to a perl variable or an array
how do i do that??
Find more posts tagged with
Comments
kalps
THIS IS HOW YOU ASSIGN A REPLICANT VALUE TO THE ARRAY
foreach my $lists (iwpt_dcr_list('dcr.customisedText')){
@values
= iwpt_dcr_value('lists.statementText');
if ($values[$index] eq ""){
my $bug = "Statement Text is empty";
iwpt_output("<center>$bug</center>");
exit(0);
}
else {
iwpt_output("<tr><td>Value Index: $values[$index]</td></tr>");
}
}