Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

While setting enableRTL globally, then status text is not displayed correctly.


https://blazor.syncfusion.com/documentation/common/right-to-left/#enable-rtl-for-all-components

 

@using Syncfusion.Blazor.Inputs

@using Syncfusion.Blazor;

@using System.Globalization

 

<SfUploader ID="UploadPhotoFile" CssClass="e-no-upload"  AllowedExtensions=".png,.gif,.jpg,.jpeg" MinFileSize=0 MaxFileSize="2000000" AllowMultiple="false" AutoUpload="false">

 

</SfUploader>

@code{

 

    [Inject]

    SyncfusionBlazorService SyncfusionService { get; set; }

    protected override async Task OnInitializedAsync()

    {

       SyncfusionService.EnableRtl(CultureInfo.CurrentCulture.TextInfo.IsRightToLeft);

 

    }

}


UI difference with static and global below.


Empty