Currently, my focus is on building a web application using Angular and the Semantic-UI framework.
In order to add a single class to an element based on a specific condition, I have successfully implemented the following syntax:
[class.className]='condition'
However, I am now faced with a situation where I need to apply multiple class names to an element, and I am unsure of the correct approach to take.
To address this issue, I attempted to utilize ngClass
by referencing a Plunker example found here.
Unfortunately, the provided solution did not yield the desired results.
My question now is, how can I modify my Plunker to achieve the desired functionality?