Skip to main content
Tab

GridViewDataTokenBoxColumn.PropertiesTokenBox Property

Gets the column editor’s settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public TokenBoxProperties PropertiesTokenBox { get; }

Property Value

Type Description
TokenBoxProperties

A TokenBoxProperties object that contains settings specific to a token box editor.

Remarks

The PropertiesTokenBox property allows you to access and customize the settings of the token box editor.

Concept

Data Columns

Example

<dx:ASPxGridView ID="grid" runat="server" ...>
    <Columns>
        ...
        <dx:GridViewDataTokenBoxColumn FieldName="Roles" VisibleIndex="2">
            <PropertiesTokenBox DataSourceID="UserRolesDataSource" TextField="Name" ValueField="ID" AllowCustomTokens="false">
            </PropertiesTokenBox>
        </dx:GridViewDataTokenBoxColumn>
    </Columns>
    ...
</dx:ASPxGridView>

Online Demo

ASPxTokenBox - Token Box Column

See Also