Skip to main content
A newer version of this page is available. .

ASPxSpellChecker.CustomJSProperties Event

Enables you to supply any server data that can then be parsed on the client.

Namespace: DevExpress.Web.ASPxSpellChecker

Assembly: DevExpress.Web.ASPxSpellChecker.v18.2.dll

Declaration

public event CustomJSPropertiesEventHandler CustomJSProperties

Event Data

The CustomJSProperties event's data class is CustomJSPropertiesEventArgs. The following properties provide information specific to this event:

Property Description
Properties Gets a collection of temporary client properties.

Remarks

The CustomJSProperties event enables you to easily transmit any data onto the client. Declare custom client properties for the client ASPxSpellChecker control. Then, you can set their values on the server side and access them on the client, as you would do with built-in properties. This allows you to easily transmit any data to the client with almost no code.

To add new properties, use the event parameter’s CustomJSPropertiesEventArgs.Properties property representing a collection of property names and their values.

Note

Property names must begin with the ‘cp’ prefix, to avoid overwriting the ASPxCallbackPanel’s base properties.

See Also