I have a lookup field in visualforce page, and upon selecting a value from "my recent item" it should populate that value in the lookup field. But, instead, it throws "Error: Multiple items found. Select from drop-down or click icon to refine search". on Standard Page it will select the actual value and give you the record.
on the lookup field i have a onchange event which calls another actionsupport function.
<apex:actionfunction name="loaduserdetails" action="{!UserDetails}" rerender="frm"/> <apex:inputField value="{!acc.OwnerId}" label="test" onChange="loaduserdetails()"/> This might be causing the issue but i wanted to be sure. So i bring up to the community.
