Skip to main content

BootstrapListBoxProperties.AllowCustomValues Property

Specifies whether or not it is possible to add custom list values using a client-side API.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DefaultValue(false)]
public bool AllowCustomValues { get; set; }

Property Value

Type Default Description
Boolean false

true, to allow client-side API members to add custom items to the data editor and select them; otherwise, false.

Remarks

The AllowCustomValues property is set to false by default. This means that the List Box control does not allow values that are not listed within the editor’s server-side BootstrapListBoxProperties.Items collection. Additionally, modifications to the client-side item collection are not synchronized with the server side, regardless of the BootstrapListBoxProperties.EnableSynchronization property’s value.

See Also