apex:logCallPublisher

The Log a Call publisher lets support agents who use Case Feed create logs for customer calls. This component can only be used in organizations that have Case Feed, Chatter, and feed tracking on cases enabled.

Example 

This example displays the Log a Call publisher.

1<apex:page standardController="Case" showHeader="true">
2                <apex:logCallPublisher id="myLogCalllPublisher"
3                    entityId="{!case.id}"
4                    title="Log a Call"
5                    width="500px"
6                    autoCollapseBody="false"
7                />
8            </apex:page>

Attributes 

Attribute NameAttribute TypeDescriptionRequired?API VersionAccess
autoCollapseBodyBooleanA Boolean value that specifies whether the Log a Call body will be collapsed to a small height when it is empty. 25.0
entityIdidEntity ID of the record for which to display the Log a Call publisher. In the current version, only Case record ids are supported.Yes25.0
idStringAn identifier that allows the component to be referenced by other components in the page. 14.0global
logCallBodyStringThe initial text value of the Log a Call body when the publisher is rendered. 25.0
logCallBodyHeightStringThe height of the Log a Call body in em. 25.0
onSubmitFailureStringThe JavaScript invoked if the call failed to be logged. 25.0
onSubmitSuccessStringThe JavaScript invoked if the call was successfully logged. 25.0
renderedBooleanA Boolean value that specifies whether the component is rendered on the page. If not specified, this value defaults to true. 14.0global
reRenderObjectThe ID of one or more components that are redrawn when the call was successfully logged. This value can be a single ID, a comma-separated list of IDs, or a merge field expression for a list or collection of IDs. 25.0
showAdditionalFieldsBooleanA Boolean value that specifies whether the additional fields defined in the publisher layout should be displayed. 25.0
showSubmitButtonBooleanA Boolean value that specifies whether the submit button should be displayed. 25.0
submitButtonNameStringThe name of the submit button in the Log a Call publisher. 25.0
submitFunctionNameStringThe name of a function that can be called from JavaScript to publish the call log. 25.0
titleStringThe title displayed in the Log a Call publisher header. 25.0
widthStringThe width of the publisher in pixels (px) or percentage (%). 25.0