thank you it worked
Hi, I sent the project to your e-mail. Inside the TestModule Page <user-list></user-list> tags not working
I updated my method of adding tag helper but still not working in abp
@addTagHelper ProfileModule.Web.TagHelpers.*, ProfileModule
yes it works without abp
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,
This code only allows me to edit the html page.
Changes in my js and css files are not reflected on the screen without re-build.
How do i solve this?
Problem solved with EnableRazorRuntimeCompilationOnDevelopment
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?
thank you for your answer.
I actually wrote it in the info file. You need to run the DbNugetTest project