Guest User

Untitled

a guest
Jul 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <apex:page controller="testPageController">
  2. <c:testComponent/>
  3. </apex:page>
  4.  
  5. <apex:component controller="testComponentController">
  6. <apex:form rendered="true">
  7. <apex:actionFunction action="{!init}" name="init"/>
  8. </apex:form>
  9. <script>
  10. init();
  11. </script>
  12. </apex:component>
  13.  
  14. public class testComponentController {
  15. public void init() {
  16. update [SELECT Id FROM Contact LIMIT 1];
  17. }
  18. }
Add Comment
Please, Sign In to add comment