GridViewDataTokenBoxColumn.PropertiesTokenBox Property
Gets the column editor’s settings.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
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
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