• Luiz Rafael S. Marcondes
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hi everyone!
I need a help with VF page.
 
I have the following VF code:
 <apex:page standardController="Improvement__c" recordSetVar="Improvement" sidebar="false" showHeader="false">
    <apex:sectionHeader title="Improvements" help="https://help.salesforce.com/apex/HTHome"/>
        <apex:form >
           <apex:pageBlock >
               <apex:pageBlockButtons >
                    <apex:commandButton value="Assign IMP" action="{!save}"/><!--alterar a Action-->
               </apex:pageBlockButtons>
                           
                           <apex:pageBlockSection title="Select Improvements" collapsible="false"/ >
                               <apex:pageBlockTable value="{!improvement}" var="imp"> 
                                   <apex:column value="{!imp.name}">
                                                          
                                   </apex:column>    
                               </apex:pageBlockTable>                                           
           </apex:pageBlock>      
        </apex:form>  
</apex:page>




However, it only displays the values (Attached file)
 
 My current page
 
I want to make it mult check box select-able in order to add it on a related list.
 
Does any body help me?