I was able to get the true portion of the handlebar below to work but cannot seem to get the conditional qualifier to select false based on the app_id. Any help would be appreciated.
{{#if app_id}}{{#contains (toString app_id) "3890489"}}false{{else}}true{{/contains}}{{/if}}
This?
{{#if app_id}}{{#compare app_id "==" "3890489"}}false{{else}}true{{/compare}}{{/if}}
Hey Tyler, this is working in the IO preview and Angge was able to help me get to that point yesterday, but it is not making the change in NetSuite. I think I have something in there overwritting it to true. I'm working on that now. Thanks for the reply.
1 Like