How to compare variable with string in smarty(.hbs)

Hi all,

I would like to compare variable in .hbs

I try with below code but not work:

variable: getType

string: testtype

{{#if getType == 'testtype'}}
  ...
{{/if}}

How do I do?

Sugar 7.6 Ent

Thanks,

M

Parents
  • I found solution.

    see example in /var/www/sugarcrm/clients/base/views/interactionschart/interactionschart.hbs

    {{#eq getType "testtype"}}
         ...
    {{/eq}}
    

    M

Reply
  • I found solution.

    see example in /var/www/sugarcrm/clients/base/views/interactionschart/interactionschart.hbs

    {{#eq getType "testtype"}}
         ...
    {{/eq}}
    

    M

Children
No Data