I have the following grid settings:
GridHeader _header = new GridHeader()
{
Visible = true,
Buttons = new string[] { “columns”, “search” },
};
GridSelection _selection = new GridSelection()
{
Enabled = true,
Mode = GridSelectionMode.Many,
CheckBoxes = new GridSelectionCheckBoxes()
{
Enabled = true,
}
};
When you check one or more rows then in the grid header the delete command is automatically shown.
How can I suppress this behavior?
-
This topic was modified 2 years, 12 months ago by TurricanDE.