Is it possible to adjust bootstrap columns based on the outcome of a certain expression?
My attempted solution:
<div class="@Installation.Fleet.Type.Equals("Vessel") ? col-lg-9 col-md-9 col-sm-12 : col-lg-12 col-md-12 col-sm-12">
</div>
Unfortunately, even when @Installation.Fleet.Type.Equals("Vessel") returns true, the program consistently displays "col-lg-12 col-md-12 col-sm-12".
Appreciate any help in advance!