Set the Disabled State in Blazor Button Component
9 Feb 20221 minute to read
Button component can be enabled/disabled by giving Disabled property. To disable Button component, the Disabled
property can be set as true
.
The following example demonstrates Button in Disabled
state.
@using Syncfusion.Blazor.Buttons
<SfButton Disabled="true">Disabled</SfButton>