function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ShamSham 

BUG :Render as pdf is buggy in case of DataList

RenderAs PDF doesn't correctly render apex: dataList
Consider the code.
Code:
<apex:dataList value="{!account}" var="account1" id="theList" type="A" >
<apex:outputText value="{!account1.name}"/>
</apex:dataList>

 The following code renders as following in HTML
  • Edge Communications
  • Burlington Textiles Corp of America
  • Pyramid Construction Inc.

Now add render as pdf to the page ,rendering is done as
  • Edge Communications
  • Burlington Textiles Corp of America
  • Pyramid Construction Inc.
Is this a confirmed bug in Visual Force ?

Thanks




Message Edited by Sham on 09-19-2008 05:11 AM

Message Edited by Sham on 09-19-2008 05:12 AM