03-10-2014 10:08 AM
Hello All,
I'm trying to customize the account simplate to only show a value if another value meets specific criteria. I expect the syntax to follow something like the phone and fax if statements in the saleslogix sample customization:
'{% if ($.Fax) { %}', '<h4>', '{%: $$.faxAbbreviationText + Sage.Platform.Mobile.Format.phone($.Fax) %}', '</h4>', '{% } %}',
What I want to do is compare the value of the account status so for example: If $.Status == "Active RMR" then display this other value... Can anyone guide me towards some documentation, or provide the correct syntax for this?
Thanks ~ Chad
Solved! Go to Solution.
03-10-2014 11:04 AM
Figured it out:
'{% if ($.Status =="Active RMR" ) { %}', ' {%: $.Revenue %} | {%: $.CurrencyCode %}', '{% } %}'