Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

Help with sp_ng_template

Ankita9793
Tera Contributor

Hi 

 

Can someone please help me with below script in a sp_ng_template. I want to add OR condtion for ng-if="c.data.offNetworkOptionSelected == 'Moved departments'" OR ng-if="c.data.offNetworkOptionSelected == 'hsbc_office_not_required'", I have tried OR and || but its not working. 

 

 

   <div ng-if="c.data.offNetworkOptionSelected == 'Moved departments'"  style="margin-top:10px" || ng-if="c.data.offNetworkOptionSelected == 'hsbc_office_not_required'"  style="margin-top:10px" >

 

 

TIA

     

1 REPLY 1

Saurabh Gupta
Kilo Patron

Hi @Ankita9793 ,
Try below-

<div ng-if="c.data.offNetworkOptionSelected == 'Moved departments' || c.data.offNetworkOptionSelected == 'hsbc_office_not_required' ">


 


Thanks and Regards,

Saurabh Gupta