Front End Developer (AngularJS) Question:

Explain me how will you display different images based on the status being red, amber, or green?

Tweet Share WhatsApp

Answer:

Use the ng-switch and ng-switch-when directives as shown below.

<div ng-switch on="account.status">
<div ng-switch-when="AMBER">
<img class="statusIcon"
src='apps/dashboard/amber-dot.jpg' />
</div>
<div ng-switch-when="GREEN">
<img class="statusIcon"
src='apps/dashboard/green-dot.jpg' />
</div>
<div ng-switch-when="RED">
<img class="statusIcon"
src='apps/dashboard/red-dot.jpg' />
</div>
</div>

Download Front End Developer (AngularJS) PDF Read All 62 Front End Developer (AngularJS) Questions
Previous QuestionNext Question
What is AngularJS? What are the key features of AngularJS? Is there any down-side of using AngularJS?Tell me do I need to worry about security holes in AngularJS?