<SfInPlaceEditor @bind-Value="@BindingProto.Password" ShowButtons="false" TValue="string">
<EditorComponent>
<SfTextBox @bind-Value="@BindingProto.Password" Placeholder="Enter pass" Type="Syncfusion.Blazor.Inputs.InputType.Password"></SfTextBox>
</EditorComponent>
</SfInPlaceEditor>
Above I have an inplace editor holding a text box. When I edit the textbox, I get a hidden string as it is a password, but when I focus out, the inplace editor displays the password. Is there anyway to prevent this from happening?