Hello Kristóf,
Greatings from Syncfusion support,
We have looked into your query and came up with a solution (i.e) you can handle using the “Blur Event” when the textbox loses its focus. Please find the code snippet below for reference.
|
<div class="form-group">
<SfTextBox ID='textbox' CssClass="e-outline" Blur="onBlur" Width="250px" Placeholder="Description *" FloatLabelType="FloatLabelType.Always"></SfTextBox>
</div>
@code {
void onBlur()
{
Console.WriteLine("Focus Lost... !!");
}
} |
Kindly check the attached sample and revert us if you have more queries regarding this.
Regards,
Vignesh Srinivasan.