Hello,
We have a component that uses the EjsCheckBox and sets it like this
<EjsCheckBox @bind-Checked="Value"
Label="@Label"></EjsCheckBox>
The value comes from a parameter:
private bool _value;
[Parameter]
public bool Value
{
get => _value;
set
{
if (_value != value)
{
_value = value;
ValueChanged.InvokeAsync(value);
}
}
}
For some reason the Value is true, but the EjsCheckBox is not displaying it as Checked.
This is a functionality that worked for sure in a previous version of Syncfusion. The version that we are currently using is 17.4.40
Kind Regards,
Tsvetan