You need to sign in to do that
Don't have an account?

Outputtext formatting in Lightning component
I have the text field and which is having the values separated by the ; symbol.
Ex:Test1;test2;test3;test4;
Now i want to display these values as below
test1
test2
test3
test4
Please let me know how to achive this formatting.
Ex:Test1;test2;test3;test4;
Now i want to display these values as below
test1
test2
test3
test4
Please let me know how to achive this formatting.
<aura:attribute name="myrecords" type="Majors_Product_Matrix__c"/>
<div class="slds-grid">
<div class="slds-col">HW Owned By Customer
<aura:iteration items="{!v.myrecords}" var="oppInfo">
{!oppInfo.HW_Owned_By_Customer__c}
</aura:iteration>
</div>
</div>