Please see attached example. Type in the field to see the issue. I cannot get SfMaskedTextBox to work in recent versions of Syncfusion.
Rega
Hi Arthur,
Greetings from Syncfusion support.
We suggest you to set IgnoreScriptsIsolation property as false (to load the scripts an styles dynamically on browser) , as like below code snippet .
|
var builder = WebApplication.CreateBuilder(args);
// Add services to the container. builder.Services.AddRazorPages(); builder.Services.AddServerSideBlazor(); builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = false; });
|
For more details about the above configuration , kindly refer the below documentation links for reference.
https://blazor.syncfusion.com/documentation/appearance/themes#static-web-assets
If the above suggestion does not resolve the issue , Please provide the issue replication steps and video demonstration to proceed further .
Thanks,
Deepak R.
Good afternoon,
after updating to the version 20.0.0.57, SfMaskedTextBox stoped working too. I can't type in it anymore.
I applied the builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = false; }); sugestion, but it still doesn't work. I get back to the 19.4.56 version and it worked again.
What am I missing?
Thanks in advance!
Hi Társis,
This is a known issue in our end with SfMaskedTextBox and the fix for this issue is estimated to be available on First week of June 2022. Kindly track the status of the fix through the following feedback
Note:
Since 2022 Volume 1 release, we have marked the built-in JavaScript isolation feature as obsolete and it is disabled by default. Currently we recommend loading scripts externally, since it provides better performance over JavaScript isolation approach. We suggest using below code.
|
builder.Services.AddSyncfusionBlazor(); |
Release notes: https://blazor.syncfusion.com/documentation/release-notes/20.1.47?type=all#breaking-changes
Regards.
Prince