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

ASPxAutoCompleteBoxBase.DataSecurityMode Property

Provides the capability to restrict setting the editor value on the client side to values listed in the server ASPxAutoCompleteBoxBase.Items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DataSecurityMode.Default)]
public DataSecurityMode DataSecurityMode { get; set; }

Property Value

Type Default Description
DataSecurityMode **Default**

One of the DataSecurityMode enumeration values.

Available values:

Name Description
Default

The data editor allows adding and selecting custom editor items.

Strict

The data editor does not allow adding and selecting custom editor items.

Remarks

By default, the DataSecurityMode property is set to the Default value. This means that a list editor allows adding new list items via client code and synchronizes modifications to this list with the server ASPxAutoCompleteBoxBase.Items collection if the ASPxAutoCompleteBoxBase.EnableSynchronization property is enabled. A list editor’s server value may be modified by an end-user either by selecting list items added via client code or by entering new values directly into an editor’s edit box. In this scenario, it is recommended to HTML encode the combo box item’s content using the following:

You can set the DataSecurityMode property to Strict to prevent setting a list editor’s value to any value except values listed within the editor’s server-side ASPxAutoCompleteBoxBase.Items collection. This helps you secure your data against any potential threat of malicious data modifications initiated in the client browser.

The DataSecurityMode property value set to DropDownStyle.DropDown is in effect if the ASPxAutoCompleteBoxBase.DataSecurityMode=DataSecurityMode.Default.

See Also