• sausalito dev
  • NEWBIE
  • 25 Points
  • Member since 2012

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

I would like to display the Solutions related to a particular Case but cannot determine the relationship between them.  I can add a related list to either the standard Solution or Case detail page, but the Schema Builder shows Solutions not connected to any other Objects!.  On a page with standardcontroller="Case", I have tried using <apex:relatedList list="solutions" /> but am getting an error:

'solutions' is not a valid child relationship name for entity Case


Any suggestions greatly appreciated.

I would like to display the Solutions related to a particular Case but cannot determine the relationship between them.  I can add a related list to either the standard Solution or Case detail page, but the Schema Builder shows Solutions not connected to any other Objects!.  On a page with standardcontroller="Case", I have tried using <apex:relatedList list="solutions" /> but am getting an error:

'solutions' is not a valid child relationship name for entity Case


Any suggestions greatly appreciated.

Hi, i am new to using visualforce and i am trying to create a detail page to overright the current detail page for a custom object. The custom object contains a picklist field containing 3 values. I have created a custom formula field using Image and Case to display the values in the picklist as images in the detail view. the formula in the field is:

 

IMAGE(
CASE( Status__c ,
"Not Received","https://emea.salesforce.com/resource/1242640894000/RedFlagStatus",
"Received", "https://emea.salesforce.com/resource/1242641297000/YellowFlagStatus",
"Checked","https://emea.salesforce.com/resource/1242641338000/GreenFlagStatus",
"Status"),
"Status") 

 

 In my visualforce page i am using <apex:outputField value="{!CustomObject__c.Status__c"/> to display the custom formula field. However the imgae is not displaying, instead it has, <img src="https://emea.salesforce.com/resource/1242641297000/YellowFlagStatus" alt="Status" border="0"/> in the field output. If anyone can help with how i should display the picklist values as images on the detail page of a record then that would be great.

 

Matt.

Is it possible to have an imaged formula field display on a Visualforce Page? 
 
If so where do the images need to be stored (I've tried both Documents and Static Resources)?  And what component and attribute do you use to display it?  Output field Value displays the url and not the actual image.  The formula is valid and it does display on a traditional SF page.  
 
Thanks,
Heather