BootstrapGridView.ContextMenuInitialize Event
In This Article
Occurs when the context menu is initialized.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.2.dll
NuGet Package: DevExpress.Web.Bootstrap
#Declaration
#Event Data
The ContextMenuInitialize event's data class is BootstrapGridViewContextMenuInitializeEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Context |
Gets the context menu. |
Menu |
Gets the context menu type.
Inherited from ASPx |
The event data class exposes the following methods:
Method | Description |
---|---|
Create |
Creates a new context menu item. |
Create |
Creates a new context menu item. |
#Remarks
<dx:BootstrapGridView runat="server"
OnContextMenuInitialize="GridViewContextMenu_ContextMenuInitialize">
<SettingsContextMenu Enabled="true" />
//...
</dx:BootstrapGridView>
protected void GridViewContextMenu_ContextMenuInitialize(object sender, BootstrapGridViewContextMenuInitializeEventArgs e) {
if(e.MenuType == GridViewContextMenuType.Rows) {
var item = e.CreateItem("Export", "Export");
item.BeginGroup = true;
e.ContextMenu.Items.Insert(e.ContextMenu.Items.IndexOfCommand(GridViewContextMenuCommand.Refresh), item);
item.Items.Add(e.CreateItem(GridViewContextMenuCommand.ExportToPdf));
//...
}
}
#Online Demo
See Also