New to KendoReact? Start a free 30-day trial
Disable the left part of a SplitButton
Updated on Dec 19, 2025
Environment
| Product Version | 7.0.2 |
| Product | Progress® KendoReact SplitButton |
Description
I want to disable only the left part of the SplitButton.
Solution
You can achieve this by setting pointer-events to `none:
css
.k-button-group > .k-button:first-child:not(:only-child) {
pointer-events: none;
}
Change Theme
Theme
Loading ...