Hi,
I added UserListTagHelper class to my project.
I made my additions as shown below in _ViewImports.cshtml
@using ProfileModule.Web.TagHelpers; @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling @addTagHelper *, ProfileModule.Web.TagHelpers
<info-user-list></info-user-list> <email mail-to="Support"></email>
The above tags from within the index.html page are not working.
namespace ProfileModule.Web.TagHelpers
{
[HtmlTargetElement("info-user-list")]
public class UserListTagHelper : TagHelper
{
public override void Process(TagHelperContext context, TagHelperOutput output)
{
....
}
public class EmailTagHelper : TagHelper
{
.....
}
Hi,
When I make changes to js and html files in the abp module, I have to close and reopen the project to see the change.
Abp application projects work fine but is a separate configuration required for the module?
I created an Abp web project. And I added a test module. I created the entities in the module. I have completed dbcontext configurations in my main project. I was able to reach my page where I can perform crud operations in the module over the web.
But
I made the module a nuget package as a separate dll. I added it to another web project and followed the same configuration paths. I also added the relevant dependencies from the module to the .....module.cs classes in the layers.
When I open my web project, I can perform my permissions on the module page. I can also open plain html page for module without entity but I am getting the following error on the index.cshtml page where the crud processes are.
Abp suite version= 5.2.0 Volo.Abp.Cli version= 5.2.0
I created a project using the application template. I added a module to my project that I created with the help of suite. Can I add an entity to this module using CRUD Page Generator? Or do I have to do the configurations manually?