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
cfederspiel@ic-2000.comcfederspiel@ic-2000.com 

Chatter Custom Shelf / Star installation and configuration error

When I click on the Chatter Shelf tab, I get the following error. I've enabled the app for all users with objects/classes/pages, entered the custom actions, edited the home page layout, etc.

Expression value does not resolve to a field
Error is in expression '{!CB.Owner}' in component <apex:inputField> in page chattershelf

Any ideas?

sebcossebcos

Hi,

I have change the following line in the visualforce page ChatterShelf :

 

<td><apex:inputField value="{!cb.Owner}" id="user" required="true" onkeypress="return (event.keyCode ? event.keyCode : event.which ? event.which : event.charCode) != 13"/></td>
    

 to:

 

<td><apex:inputText value="{!cb.Owner}" id="user" required="true" onkeypress="return (event.keyCode ? event.keyCode : event.which ? event.which : event.charCode) != 13"/></td>
    

 

The error has gone away and the page is displayed.

 

 

tezsttezst

We are still getting the same error. can anyone help us on that?