Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <apex:page controller="productListController" showHeader="true" sidebar="false">
  2.  
  3. <apex:pageblock >
  4. <apex:pageblocksection >
  5. <apex:pageblocktable var="e" value="{!product}">
  6. <apex:column headervalue="name" onclick="getProductId('{!e.Id}')" >
  7.  
  8. <apex:outputField value="{!e.Product_Image__c}"/>
  9. <apex:outputField value="{!e.name}"/>
  10. </apex:column>
  11. </apex:pageblocktable>
  12. </apex:pageblocksection>
  13. </apex:pageblock>
  14.  
  15. public class productListController
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement