DataGrid when using font-awesome takes longer to load

Hi All

I am using Blazor components with C#. I have noticed that when I use Icons from font-awesome in the data grid (DataGrid Multiple Column Sorting), as opposed to material-icons, the grid is taking a very long time to load.

When using material icons, it takes a second, when using font-awesome, it is taking 5 seconds and even up to 20 seconds in some cases.

Has anyone else experienced this, and what have they done to resolve it.

Here is an example of the code in the component:

<RadzenGridColumn Width="10%" TItem="SomeModel" Title="Configure">
                        <Template Context="SomeModel">
                            <div style="text-align:center;">
                                <a href="@($"/Configure/{SomeModel.Id}/{OtherId}{OtherOtherId}")">
                                    <i class="fas fa-cog"></i>
                                </a>
                            </div>
                        </Template>
                    </RadzenGridColumn>

Check the loading times of the font awesome assets in your browser's developer tools.

1 Like

Apologies for the long wait for a reply. I have checked the load times for FA and it loads normally. I have used a different grid and it works as expected. I must have something in my code that it is effecting it elsewhere.