If the AllowDesignView property is set to false, the editor's Design tab is not displayed, and end-users are not allowed to modify the editor's content using visual UI elements (such as toolbar buttons).
The complete sample project is available in the DevExpress Code Central database at E377.
Aspx |
...
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server" Html='<%# Bind("Html") %>'>
<SettingsImageUpload>
<ValidationSettings AllowedFileExtensions=".jpg, .png, .gif">
</ValidationSettings>
</SettingsImageUpload>
<Settings AllowDesignView="False" AllowHtmlView="False" />
</dx:ASPxHtmlEditor>
...
|