Skip to content

Instantly share code, notes, and snippets.

@junojisan
Last active August 29, 2015 14:04
Show Gist options
  • Save junojisan/2d49d0aab6024c3f599c to your computer and use it in GitHub Desktop.
Save junojisan/2d49d0aab6024c3f599c to your computer and use it in GitHub Desktop.
<apex:form id="fm">
<apex:outputPanel rendered="{!NOT(ISNULL(resBody))}">
<apex:pageBlock >
<apex:commandButton action="{!getAccounts}" value="取引先を取得" reRender="fm" />
<apex:pageBlockTable id="pbtAccounts"
value="{!accounts}" var="acc" rendered="{!NOT(ISNULL(accounts))}">
<apex:column value="{!acc.Id}" />
<apex:column value="{!acc.Name}" />
</apex:pageBlockTable>
</apex:pageBlock>
</apex:outputPanel>
</apex:form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment