Unplanned
Last Updated: 02 Jul 2025 12:40 by Peter Huisman
Peter Huisman
Created on: 02 Jul 2025 12:40
Category: Grid
Type: Feature Request
0
Add a built-in option that keeps the toolbar tools active by default

Starting with version 2025.2.520, the toolbar tools like "Save changes" and "Cancel changes" are hidden by default. When the ShowInactiveTools(true) option is set, the inactive tools are displayed as disabled until a change in the Grid's data is made (for example, the tools are active when the edited cell is closed).

Is it possible to create an option that enables the previous behavior of the inactive toolbar tools - to keep the tools always active and visible no matter if there is a change or not?

For example:

.ToolBar(toolbar =>toolbar
            .Items(itm =>
            {
                itm.Create();
                itm.Save();
            })
            .EnableInactiveTools(true)
)

0 comments