DxCheckBox<T>.DisableDefaultRender Property
Specifies whether to hide the default check mark.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public bool DisableDefaultRender { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
When you render custom checkbox content, set the DisableDefaultRender
property to true
to hide the default check mark (or toggle switch).
<DxCheckBox @bind-Checked="@Value" AllowIndeterminateStateByClick="true" DisableDefaultRender="true">
// Add child content here...
</DxCheckBox>
@code{
bool? Value { get; set; } = true;
// ...
}
See Also