Skip to content

Instantly share code, notes, and snippets.

@cdeckert
Created September 3, 2013 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdeckert/6424133 to your computer and use it in GitHub Desktop.
Save cdeckert/6424133 to your computer and use it in GitHub Desktop.
<apex:pageBlockSection showHeader="true" columns="1">
<apex:facet name="header">
<apex:panelGroup >
<apex:outputLabel >Artist Type Filter:</apex:outputLabel>
<apex:selectList size="1" value="{!filterType}">
<apex:selectOptions value="{!filterSelectOptions}" />
</apex:selectList>
<apex:commandButton value="Filter" action="{!filter}"/>
<apex:commandButton value="Clear Filter" action="{!clearFilter}"/>
</apex:panelGroup>
</apex:facet>
</apex:pageBlockSection>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment