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
AdilewaAdilewa 

Getting Case owner ID being able to edit

I have a my visualforce page overriding my cases.
To get the case owner, I am using the following line:

<apex:inputField label="Case Owner" value="{!Case.ownerid}" />

However, the name on the field changes based on whoever is logged in looking at the case instead of the user who opened the case (owner).
Also, I would like to add a way where the owner can be changed by the user to another user or queue.

Please help!!!!
bob_buzzardbob_buzzard
This doesn't sound right - the Case.OwnerId field contains the id of the user that created the case.  This sounds like the page is always creating new cases rather than editing existing ones.  Also, the inputfield will render the appropriate widget by default to allow you to change the owner - a picklist for User/Queue and then a lookup to allow you to specify the user in question.
AdilewaAdilewa
Then why do you tnink it is creating new cases instead of editing the existing ones? Is there another attribute I might be missing?
Mohit Bansal6Mohit Bansal6
Adilewa

Can you please share your whole code to analyse issue?