Handle multiple conditions in sightly
Hi All,
1] I have a dialog wherein I can select any one of the six colours. Based on the color selected, the component div should be applied with corresponding css classes.
2] If I had only two colours in the dialog I could have done something like
<div class=" cssrelatedstuff ${properties.colour=='White - border' ? 'csswhiteclass' : 'cssotherclass'}">
Any thoughts on this will be helpful.