GridViewDataTokenBoxColumn.PropertiesTokenBox Property
In This Article
Gets the column editor’s settings.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public TokenBoxProperties PropertiesTokenBox { get; }
#Property Value
Type | Description |
---|---|
Token |
A Token |
#Remarks
The PropertiesTokenBox property allows you to access and customize the settings of the token box editor.
#Concept
#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