Guest User

Untitled

a guest
Mar 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <apex:page standardController="Event" extensions="ext1" showHeader="false" standardStylesheets="false">
  2. <apex:form >
  3. <div style="margin:0px; overflow:auto">
  4. <apex:pageBlock rendered="{!list != null}">
  5. <div style="overflow:auto;">
  6. <apex:pageBlockTable value="{!sublist}" var="s" rendered="{!sublist != null}" width="100%" styleClass="overflow:auto">
  7. <iframe scrolling="yes">
  8. <apex:column headerValue="Activity">
  9. <apex:outputField value="{!s.name}"/>
  10. </apex:column>
  11. </iframe>
  12. </apex:pageBlockTable><br/>
  13.  
  14. <apex:pageBlockTable value="{!sList}" var="s" rendered="{!sList != null}">
  15. <apex:column headerValue="List">
  16. <apex:outputLink value="/{!s.Id}" target="_parent">{!s.Name}</apex:outputLink>
  17. </apex:column>
  18. </apex:pageBlockTable>
  19. </div>
  20. </apex:pageBlock>
  21. </div>
  22. </apex:form>
  23. </apex:page>
Add Comment
Please, Sign In to add comment