SfMaskedTextBox not working in 20.1.0.55

Please see attached example. Type in the field to see the issue.  I cannot get SfMaskedTextBox to work in recent versions of Syncfusion.

Rega


Attachment: SfMaskedTextBoxOnMobile.Issue_4d00590e.zip

3 Replies

DR Deepak Ramakrishnan Syncfusion Team May 16, 2022 02:50 PM UTC

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/getting-started/blazor-server-side-visual-studio#register-syncfusion-blazor-service

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.



Társis May 30, 2022 06:55 PM UTC

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!



PO Prince Oliver Syncfusion Team May 31, 2022 05:19 AM UTC

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

https://www.syncfusion.com/feedback/35142/not-able-to-enter-any-numbers-or-characters-in-the-masked-textbox-of-v20-1-56


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


Loader.
Up arrow icon