-
Error: Could not resolve the entity from <apex:inputField> value binding '{!variable}'
I have a VF page with a controller. The controller has the following property (yes, I made sure to save):
public Boolean IsBool{ get; set; }
and the Visual Force page has the following code:<apex:inputField value=”{!IsBool}” label=”Is a bool” />
This combination is giving me the following error when I try to save the Visual Force page:
Log In to reply.