HtmlEditorSettings.CustomJSProperties Property
Enables you to get server-side data on the client.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
CustomJSPropertiesEventHandler | A delegate method that allows you to process server-side data. |
Remarks
The CustomJSProperties property enables you to declare temporary client properties, which you can access on the client.
Use the CustomJSPropertiesEventArgs.Properties property to add temporary client properties. The property names should begin with the ‘cp’ prefix.
Html.DevExpress().HtmlEditor(settings => {
settings.Name = "htmlEditor";
// ...
settings.CustomJSProperties = (s, e) => {
var editor = s as MVCxHtmlEditor;
e.Properties["cpToolbarMode"] = editor.ToolbarMode;
};
}).Bind(Model).GetHtml()
Concept
How to Access Server Data on the Client Side
See Also