• Charlie Pickles 5
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
Please can someone explain why this wouldn't work?
 the error im receiving is:
Error: Engineer_Returns_Contact line 24, column 23: The element type "apex:outputPanel" must be terminated by the matching end-tag "</apex:outputPanel>"
Error: The element type "apex:outputPanel" must be terminated by the matching end-tag "</apex:outputPanel>".





<messaging:emailTemplate subject="RAM Cameras to Return" recipientType="Contact" relatedToType="Case">

<messaging:htmlEmailBody >
<html>
<body>


kdmksmda
djbaskns
sjdnsaokdna

<table>
       <apex:repeat Value="{!relatedto.Service_Bookings__r}" var="SVC">
                   <apex:outputPanel rendered="{!AND(SVC.Work_Type__c = "Service Call"), SVC.Camera_Returned__c = False)}">
                    <tr>
                   <td style="color: #EB690B; text-align: Center; padding-left: 10%; padding-right: 10%;"><b>{!SVC.Case_Owner__c}</b></td>


                   <!-- <td>{!SVC.Account_name__c}</td> -->

                   <!-- <td>{!SVC.Case_ID__c}</td> -->

                    </tr>
                    </apex:outputPanel>
             </apex:repeat>
</table>
</body>
</html>
Hi guys,

Basically we have a map on an account from a VF page and I want another VF page next to it showing a block of text which will act as a script/prompting questions that are always going to be displayed on the account. Just a simple block of text, can anyone assist?

Thanks