Here are some links for 3rd party component integrations. You can also share your article or request a new article.
SyncFusion UI for Blazor https://community.abp.io/articles/using-syncfusion-components-with-the-abp-framework-5ccvi8kc
Telerik UI for MVC (Kendo) https://community.abp.io/articles/how-to-integrate-the-telerik-ui-for-asp.net-core-kendo-components-with-the-abp-mvc-ui-u2voab2a
DevExtreme MVC Components https://community.abp.io/articles/using-devextreme-components-with-the-abp-framework-zb8z7yqv
DevExtreme Angular Component https://community.abp.io/articles/using-devextreme-angular-components-with-the-abp-framework-x5nyvj3i
Telerik Blazor Components https://community.abp.io/articles/how-to-integrate-the-telerik-blazor-components-to-the-abp-blazor-ui-q8g31abb
Angular Material Components https://community.abp.io/articles/using-angular-material-components-with-the-abp-framework-af8ft6t9
Elsa Workflow https://community.abp.io/articles/using-elsa-workflow-with-the-abp-framework-773siqi9
The ABP Commercial and ABP Framework integrates 3rd party solutions to make a bridge between other tools. Be aware that there's no support for the 3rd party libraries, tools, solutions and packages. You can ask your questions to the relevant solutions repository.
...
We looking forward the sample code on Angular UI to override the Permissions grant for super User/Admin. We did on API side, looking for angular Sample UI.
When I publish my ABP project I get the following error:
C:\Program Files\dotnet\sdk\6.0.100-rc.1.21458.32\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.ConflictResolution.targets(112,5): error NETSDK1152: Found multiple publish output files with the same relative path:
D:\Github\volo\abp\lepton-theme\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton\compilerconfig.json,
D:\Github\volo\abp\bookstore\src\Acme.BookStore.Theme\compilerconfig.json,
D:\Github\volo\abp\lepton-theme\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton\package.json,
D:\Github\volo\abp\bookstore\src\Acme.BookStore.Web\package.json.
D:\Github\volo\abp\bookstore\src\Acme.BookStore.Web\Acme.BookStore.Web.csproj
test
test
I'm getting the following error on AuthServer project.
Could not load file or assembly 'Microsoft.EntityFrameworkCore, Version=5.0.8.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
File name: 'Microsoft.EntityFrameworkCore, Version=5.0.8.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'
In the current implementation the web project saves the Data Protection Keys to Redis. When I resrtart the Redis, all the logged in users are being logged out. How can I persist it to the database?
Show me how to add Order (new) microservice to my ABP microservice template.
this question is asked by Vijay P. Nallala
Hi ABP,
Can you please suggested which method as ICurrentUser implementation. We need override the Current user and need to add Custom Data. Please help me. We are using the Identity Sever. Based on our clientId need to load api/identity resources.
For Example –
Application1 Client1 – IdenityWEB - based on ApplicationID, OrgUnits, Client claims (BusinessId, Locale) Application2 Client2 – ProductManagement based on ApplicationID, OrgUnits, Client claims (BusinessId, Locale) Application3 Client3 – OrderManagement based on ApplicationID, OrgUnits, Client claims (BusinessId, Locale)
public interface ICurrentUser
{
bool IsAuthenticated { get; }
Guid? Id { get; }
string UserName { get; }
string Name { get; }
string SurName { get; }
string PhoneNumber { get; }
bool PhoneNumberVerified { get; }
string Email { get; }
bool EmailVerified { get; }
Guid? TenantId { get; }
string[] Roles { get; }
Claim FindClaim(string claimType);
Claim[] FindClaims(string claimType);
Claim[] GetAllClaims();
bool IsInRole(string roleName);
}
Thanks Vijay