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)
how to refer to a 'logical and' in a tpl?
beanie1
When coding in a .tpl file, how do we reference a "logical and" operator? A "logical or" is '||' and we suspected the "logical and" was '&&' but it doesn't seem to recognize it.
Find more posts tagged with
Comments
Migrateduser
Can you try &&
herald10
within <iw_perl> tag I used the following code and its working great for me...
if(
@Weights
&&
@Activities)
{
iwpt_output(" Its working!!!\n");
}
else{
iwpt_output(" Its Not working!!!\n");
}