Here is the code snippet I am working with:
<div class="tabs DeliveryRightDiv">
<label class="selected"><a>One</a></label>
<label> <a>Two</a> </label>
<label> <a>Three</a></label>
</div>
I have a div that will be displayed based on whether the user has selected One, Two, or Three from the above options.
<div flex layout="row" class= "mycls">
<div flex layout="row" id="myid">
<div flex layout="column" class="insideall">
<label>{{Oneselectedvalue}}<span>Total </span></label>
</div>
</div>
</div>
If the user selects Two, the expression value should be {{Twoselectedvalue}}
instead of {{Oneselectedvalue}}
(All values are stored in the controller).
I have attempted to add a model, but unlike an input box, I do not have a value to compare for showing or hiding content. Is there any suggestion on how this can be achieved within one div like this?