0
jtallon created
- ABP Framework version: latest (5.2)
- UI type: MVC
- DB provider: EF Core
Is there a way to get the details forms to open the same way as we can with the Off-Canvas CSS in bootstrap?
For example https://getbootstrap.com/docs/5.0/components/offcanvas/
I'd like this to open for the majority of the entity forms, but not all.
Regards
1 Answer(s)
-
0
Hi,
You can replace
AbpModalTagHelperService
with your own implementation to build HTML code(alsoAbpModalHeaderTagHelperService
,AbpModalFooterTagHelperService
,AbpModalBodyTagHelperService
): https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Modal/AbpModalTagHelperService.csFor example:
[ExposeServices(typeof(AbpModalTagHelperService))] public class MyAbpModalTagHelperService : AbpModalTagHelperService { protected override void SetContent(TagHelperContext context, TagHelperOutput output, TagHelperContent childContent) { //..... base.SetContent(context, output, childContent); } }