I was implementing Telerik in our existing project.
I followed this tutorial. But when i add the Telerik Component, it conflicts on the Blazorise component. How can you solve this issue?
Note: we have 30 or more entities created so its kinda hassle if i update the CardBody to Blazorise.CardBody one by one.
If you're creating a bug/problem report, please include followings:
- ABP Framework version: vX.X.X
- UI type: Blazor
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace:
- Steps to reproduce the issue:"
3 Answer(s)
-
0
its kinda hassle if i update the CardBody to Blazorise.CardBody one by one.
hi
You can create a new component and use Blazorise internally.
eg:
<BlazoriseCardBody><BlazoriseCardBody/>
Or global replace the
CardBody
text. -
1
The problem is that neither is using clever unique naming for their components and thus conflicts with each other. We solved it by removing one of them from global import and just declared it in each component instead. One of the reasons we decided to switch to DevExpress components instead.
-
0
Thanks improwise