Hi Friends,I have two requirment related to templating:-1: I need total count of all those items comes under one container in TPL file.How we can get total no. of items under oner container?2. While iterating through iw_iterate tag, how we can get the container name and item names?ThanksAadiSolaris 10TS 6.7.1 SP1
...my @nodes = grep { $_->type() ne "CDATA" } iwpt_dcr_list('dcr.path.to.container');my $num_nodes = @nodes; # this should give you the number of items directly within the containerforeach my $n (@nodes) { my $type = $n->type(); # this should give you things like 'text', 'container', etc.) ...};...