Guest User

Untitled

a guest
Feb 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <apex:column headerValue="Account">
  2. <apex:outputLink value="/{!a.Id}" id="aLink">{!a.Name}</apex:outputLink>
  3. </apex:column>
  4.  
  5. <script type="text/javascript">
  6. var count = 0;
  7. var olink = document.getElementById("aLink");
  8.  
  9. olink.onclick = function(){
  10. count++;
  11. }
  12. </script>
Add Comment
Please, Sign In to add comment