No, As I said you try to replace the
AbpSelectTagHelperServiceinstead ofAbpTagHelperService<AbpSelectTagHelper>,AbpSelectTagHelperFor example:
[Dependency(ReplaceServices = true)] [ExposeServices(typeof(AbpSelectTagHelperService))] public class MySelectTagHelperService : AbpSelectTagHelperService { public MySelectTagHelperService(IHtmlGenerator generator, HtmlEncoder encoder, IAbpTagHelperLocalizer tagHelperLocalizer, IStringLocalizerFactory stringLocalizerFactory, IAbpEnumLocalizer abpEnumLocalizer) : base(generator, encoder, tagHelperLocalizer, stringLocalizerFactory, abpEnumLocalizer) { } public override void Process(TagHelperContext context, TagHelperOutput output) { ... base.Process(context, output); } }
It worked thanks, will let you know in case of any thing else.
Hi,
You can try to replace the
AbpSelectTagHelperService.[Dependency(ReplaceServices = true)] [ExposeServices(typeof(AbpSelectTagHelperService))] public class MySelectTagHelperService : AbpSelectTagHelperService
I dont think I got ur point, do u mean something like below code?
will you able to provide the path for the specific file which you are refering us to override. Thanks in advance
Hello,
You can get the source code of LeptonX by using the below command, and you can customize it as per your requirements.
abp get-source Volo.LeptonTheme --version 7.3.1Thanks, Anjali
Thanks for the update, you mean the provide command will give the source code for the leptonX demo site (https://x.leptontheme.com/) as well?
hi
You can share the logs of authserver now without set level.
You can close this ticket, We found the issue, we missed adding options.Conventions.AuthorizePage("/XXXXService/XXXXManagements/Edit/Index", XXXXServicePermissions.XXXXManagements.Default); after adding so it worked fine.
hi
It seems the logs don't contain
authserverwebsite.Can you share the logs of all website? Thanks
Also set the level to Debug will be best.
public async static Task<int> Main(string[] args) { Log.Logger = new LoggerConfiguration() .MinimumLevel.Debug() .Enrich.FromLogContext() .WriteTo.Async(c => c.File("Logs/logs.txt")) .WriteTo.Async(c => c.Console()) .CreateLogger();
for this we had to deploy the code, will share that tomorrow
hi
Please share the full
logs.txtof your video, I guess thereturn urlhas wrong.liming.ma@volosoft.com
Thanks
Sent a logs to ur email, let me know if anything is needed more on this
Thanks
shared the screen recording to ur email malimings@gmail.com
hi
Please share some info first. Then we can join a zoom meeting.
ok, will send
hi
I do not understand it very well. Can you share some screenshots, code and logs? Thanks
Is it possible to have a screenshare session ?
hi
Please share the logs.
There is a
RedirectAllowedUrlsin theAppUrlOptionsYou can add your URL to it or override the
IsRedirectAllowedUrlmethod ofIAppUrlProvider.
I think there is small miss communication, when users are clicking on the application URL link, they are able to login and navihate to the application.
but our requirement is redirect to Specific Module specific URL after successful login. In our case this is perfectly working for Service A but not behaving same for Service B and ABP. Forms module.
In case of service B, the user is able to login and just landed to Default/Home page not the module sepcific page https://test.com/ServiceBMyObjectA/Edit/?id=d1268bec-b1ae-8397-c175-3a0e9c194353