Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <apex:component controller="MyController">
  2. <apex:attribute name="recId" assignTo="{!myId}" type="Id"/>
  3. ...
  4.  
  5. public class MyController {
  6. public Id myId {get;set;}
  7. ...
  8.  
  9. <apex:page standardController="Account" ...>
  10. ...
  11. <c:MyComponent recId="{!Account.id}" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement