This component provides inline editing support to <apex:outputField> and various container components. In order to support inline editing, this component must also be within an <apex:form> tag.The <apex:inlineEditSupport> component can only be a descendant of the following tags:<apex:dataList><apex:dataTable><apex:form><apex:outputField><apex:pageBlock><apex:pageBlockSection><apex:pageBlockTable><apex:repeat>See also: the inlineEdit attribute of <apex:detail>
A link to a JavaScript library that can be used in the Visualforce page. When specified, this component injects a script reference into the head element of the generated HTML page.For performance reasons, you may simply want to use a JavaScript tag before your closing <apex:page> tag, rather than this component.
A section of data within an <apex:pageBlock> component, similar to a section in a standard Salesforce page layout definition.An <apex:pageBlockSection> component consists of one or more columns, each of which spans two cells: one for a field's label, and one for its value. Each component found in the body of an <apex:pageBlockSection> is placed into the next cell in a row until the number of columns is reached. At that point, the next component wraps to the next row and is placed in the first cell.To add a field from a Salesforce object to an <apex:pageBlockSection>, use an <apex:inputField> or <apex:outputField> component. Each of these components automatically displays with the field's associated label. To add fields for variables or methods that are not based on Salesforce object fields, or to customize the format of Salesforce object field labels, use an <apex:pageBlockSectionItem> component. Each <apex:inputField>, <apex:outputField>, or<apex:pageBlockSectionItem> component spans both cells of a single column.
A set of buttons that are styled like standard Salesforce buttons. This component must be a child component of an <apex:pageBlock>.Note that it is not necessary for the buttons themselves to be direct children of the <apex:pageBlockButtons> componentbuttons that are located at any level within an <apex:pageBlockButtons> component are styled appropriately.
A text area input element. Use this component to get user input for a controller method that does not correspond to a field on a Salesforce object, for a value that requires a text area.
The email publisher lets support agents who use Case Feed compose and send email messages to customers. You can customize this publisher to support email templates and attachments. This component can only be used in organizations that have Case Feed and Email-to-Case enabled. Ext JS versions less than 3 should not be included on pages that use this component.