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
MMA_FORCEMMA_FORCE 

Adding Notes to QuotePDF???

Hi I keep getting the following error:

Error: Unknown property 'VisualforceArrayList.body'

 

 

<apex:pageBlockSection title="Notes" columns="1" collapsible="false" > <apex:pageBlockTable value="{!SFDC_520_Quote__c.Notes}" var="nts" border="1" cellspacing="0" cellpadding="0" style="font-size:10px; font-family:courier;"> <apex:column headerValue="Note">{!nts.body}</apex:column> </apex:pageBlockTable> </apex:pageBlockSection>

 What is wrong with my statement??

Also does anyone know how to make an image transparent in VF???

Thanks

 

 

Cheriah200Cheriah200

Hi,

 

I think your second line there needs the following amendment ="{!SFDC_520_Quote__c.Notes_c}" as the notes field you're refering to is a custom field.

 

Also, what/where is this referencing? {!nts.body}

 

I don't know how to make an image transparent in vf but if you know how to do it it in html, just add the tags either side of the mage.  (It needs to be written in tidy XHTML to work properly)

 

Hope that helps.