• RuYve
  • NEWBIE
  • 20 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies

Hi All,

I have a multiselect picklist value in the vf page. Its a read only field. When I output the field the values appears with semicolon

 

Currently I am using the below code to ouput the field value

 <apex:outputText label="Franchises" value="{!Account.Franchises__c}"></apex:outputText>

and this displays the field values like below

Audi; Acura; Ford

My requirement here is i want to display the values without the semicolons. Can i display each value in a different line?

Eg: Audi

      Acura

     Ford

how can i do this?