Skip to main content

ASPxClientRichEdit.DocumentLoaded Event

Occurs on the client side when a document model is loaded into the control.

#Declaration

TypeScript
DocumentLoaded: ASPxClientEvent<ASPxClientEventHandler<ASPxClientRichEdit>>

#Event Data

The DocumentLoaded event's data class is ASPxClientEventArgs.

#Remarks

<%--Updates all fields once the editor is shown--%>
<dx:ASPxRichEdit ID="DemoRichEdit" runat="server" Width="100%" Height="700px">
    <ClientSideEvents DocumentLoaded="function(s, e) {s.commands.updateAllFields.execute();}" />
</dx:ASPxRichEdit>

Refer to the following section for more information about client-side events: Client API.

See Also