https://github.com/abpframework/abp/issues/19325
Hi
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/RadarSpinner.razor https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/wwwroot/volo.abp.blazoriseui.css
Perfect, thank you very much! Can you refund me the question (at least one was a bug)?
Yes, sure.
Can you tell me how I can replace the color of the RadarSpinner? (CSS)
You can replace the color using CSS
Hi,
Sorry for that.
Could you check the package.json to make sure the version is ~8.0.5
Try removing the node_modules and yarn.lock as well.
In your DataGrids in the admin panel you have a loading animation / loading spinner. How can I also integrate this into the DataGrid generated by the Suite? And can you include this as a default?
You can edit the suite template to add a loading spinner; we will support it in the next version.
Yes, that seems to work. Will you include this in the next release?
Yes, we will
Can you also add the loading spinner to the DataGrid when you update this template? How can I add the same one that you are already using?
Sorry, I didn't get it.
Hi,
Could you try this to check if it work
[ExposeServices(typeof(PageHeader))]
public partial class MyPageHeader : PageHeader
{
protected override async Task OnParametersSetAsync()
{
if (Toolbar != null)
{
var toolbarItems = await PageToolbarManager.GetItemsAsync(Toolbar);
if (ShouldRenderToolbarItems(toolbarItems))
{
PageLayout.ToolbarItems.Clear();
foreach (var item in toolbarItems)
{
PageLayout.ToolbarItems.Add(item);
}
}
}
}
private bool ShouldRenderToolbarItems(PageToolbarItem[] items)
{
if (items.Length != PageLayout.ToolbarItems.Count)
{
return true;
}
return items.Where((t, i) => t.ComponentType != PageLayout.ToolbarItems[i].ComponentType).Any();
}
}
I will check it
Hi,
This may be a problem with Ocelot, I'm not sure.
https://github.com/ThreeMammals/Ocelot/issues/930
Could you share a simple project via email that can reproduce the problem with me? I will check it. thanks shiwei.liang@volosoft.com