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
Behzad Bahadori 18Behzad Bahadori 18 

Cant Search for Account Parent in my VisualForce Page

When I am searching for a parent account ,there is usually a magnifier glass that allows the users to search for the parent. for some reason my VF page doesn't show the magnifier glass. the code works . If I enter a wrong parent name it will not let me submit and it tells me that its wrong name but the magnifier glass which is suppose to help me search for the parent account name, doesn't display on my page
 
​<apex:pageBlockSectionItem rendered="{!IF($Profile.Name =='test', false , true)}"> <apex:outputLabel value="Parent Account" for="acctparent" /> 
<apex:inputField id="acctparent" value="{!account.ParentId}" /> </apex:pageBlockSectionItem>

 
anuj huriaanuj huria
hi Behzad,
account object dont have any parent 
thanks