apex:remoteObjects

Use this component, along with child <apex:remoteObjectModel> and <apex:remoteObjectField> components, to specify the sObjects and fields to access using Visualforce Remote Objects. These components generate models in JavaScript that you can use for basic create, select, update, and delete operations in your client-side JavaScript code.

Attributes 

Attribute NameAttribute TypeDescriptionRequired?API VersionAccess
createString$RemoteAction override for the create method. Applies to all remote object types. 43.0
deleteString$RemoteAction override for the create method. Applies to all remote object types. 43.0
idStringAn identifier that allows the component to be referenced by other components in the page. 14.0global
jsNamespaceStringThe JavaScript namespace for the generated models. 43.0
renderedBooleanA Boolean value that specifies whether the component is rendered on the page. If not specified, this value defaults to true. 14.0global
retrieveString$RemoteAction override for the retrieve method. Applies to all remote object types. 43.0
updateString$RemoteAction override for the create method. Applies to all remote object types. 43.0

See Also