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
reatlimecoreatlimeco 

Why don't task fields come out as editable on sites when a user logs in?

<apex:inputField value="{!theirTask.Subject}" /> <apex:inputField value="{!theirTask.description}" /> <apex:inputField value="{!theirTask.priority}" /> <apex:inputField value="{!theirTask.status}" /> <apex:inputField value="{!theirTask.ActivityDate}" />

 

Task newTask = new Task(); Public Task theirTask { get { newTask.WhoId = cId; return(theirTask);} set; }

 

BulentBulent
you really need to put more explanation.