CommandLayoutItem.Name Property
In This Article
Specifies the command item name.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
String | String. |
The command item name. |
#Remarks
GridViewSettings.Columns.Add method:
settings.Columns.Add(new MVCxGridViewCommandColumn() {
Name = "CommandColumnEdit",
ShowEditButton = true,
Visible = true });
GridViewSettings.CommandColumn:
settings.CommandColumn.Visible = true;
settings.CommandColumn.ShowDeleteButton = true;
settings.CommandColumn.ShowEditButton = true;
settings.CommandColumn.Name = "CommandColumn";
...
settings.SettingsAdaptivity.AdaptiveDetailLayoutProperties.Items.AddCommandItem("CommandColumn");
See Also