function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
George WilliamsGeorge Williams 

Contact report action VF page select list not showing my VF page

my VF page:
<apex:page standardController="Contact" recordSetVar="contacts">
    <apex:form >
    	<apex:pageBlock title="Contact Assistant Information" id="contact_ast_info">
        	<apex:pageBlockTable value="{! contacts }" var="c">
                <apex:column value="{! c.assistantname }"/>
                <apex:column > 
                	<a href="tel:{!c.assistantphone}">{!c.assistantphone}</a>
                </apex:column>
            </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>
However, even though other pages set up similar this one are showing up in the list this one does not.  Cannot find where the problem is.
 
William TranWilliam Tran
What is the issue?  I see lots of empty rows. You should list all the contact name so the rows are not empty.

Otherwise you should consider using <apex:dataTable .../>

Cut and past the code below. You can format the <apex:dataTable .../> using styles.  You can also use the apex:facet tags.

Thx
 
<apex:page standardController="Contact" recordSetVar="contacts">
    <apex:form >
        <apex:pageBlock title="Contact Assistant Information" id="contact_ast_info">
            <apex:pageBlockTable value="{! contacts }" var="c">
                <apex:column value="{! c.assistantname }"/>
                <apex:column > 
                    <a href="tel:{!c.assistantphone}">{!c.assistantphone}</a>
                </apex:column>
            </apex:pageBlockTable>
            
                       
   <!------------------------------>         

            
        </apex:pageBlock>
                    
             <apex:dataTable value="{!contacts}" var="c">
             
                <apex:column value="{! c.assistantname }"/>
                <apex:column > 
                    <a href="tel:{!c.assistantphone}">{!c.assistantphone}</a>
                </apex:column>
                
            </apex:dataTable>
        
    </apex:form>
</apex:page>

 
George WilliamsGeorge Williams
Hello William,

This is the issue, I cannot select this VF page for a custom Contact action:

User-added image