• vbelawa1
  • NEWBIE
  • 0 Points
  • Member since 2009

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

I am passing a list to a HTML table in a VF controller. 

actionResults = actionResults + '<li>' + sbiA.Name + '</li>';

res.actions = actionResults;

in the VF page 

 

<td>Actions:</td><td>{!res.actions}</td>

 

There is other code too but I am not posting all the code. 

So the problem is that when I view the page I see tags in the OP. 

Like this

<li>Test Action 2</li><li>Test Action</li>

I want it to be displayed like below.. 

 

  • Test Action 2
  • Test Action