• iJojo
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 4
    Replies

Hi, 

 

here's the issue i'am having.

 

i only want to repeat a custom richtextfield of my opportunities on a visualforcepage.

 

The custom field(rich text) is menus__c.

 

and my visualforce code is the following ;

 

<apex:repeat value="{!Opportunity.menus__c}" var="Line">
<tr>
<td>{!Line.menus__c}</td>
</tr>
</apex:repeat>

 

i have also tried :

 

<apex:repeat value="{!Opportunity.menus__r}" var="Line">
<tr>
<td>{!Line.menus__r}</td>
</tr>
</apex:repeat>

 

 

any ideas?

 

Thank you in advance.

 

Jonathan

hi, i have two issues ;

 

1) i'm trying to set up a visual page for quotes and invoices.

 

I stuck trying to get this : 

 

{!$Organization.Name}{!$Organization.street}  {!$Organization.state}{!$Organization.postalcode} {!$Organization.city} | restaurant@vieux-bois.ch | www.vieux-bois.ch {!$Organization.phone} | {!$Organization.fax}

 

as my page footer. 

 

2) second issue is the following,

 

my visual force page is build with titles like per example ;  

 

<h2>wine for your meal</h2>

 

and under my related field ;

 

<h9><apex:outputfield value="{!Opportunity.winefield}"/></h9>

 

so what i'd like to is to have the tiltle h2 displayed but only if there's a value in {!Opportunity.winefield}

 

 

Thank you in advance for your responses. This is my first post on this site so if i'm missing any info you would need let me know.

 

 

Hi everybody,

 

My opportunity has a master-detail to a custom object called Opportunity.

i tried this

<apex:repeat value="{!Opportunity.Payment__c}" var="line"

 

but it's not working.

Anyone?