Hi,
For non ASPNET Core projects, please see #1296@e07655d4-f07a-4387-b073-86202354984a
Hi,
You can use Angular's "State Change Events" for that. Call abp.ui.setBusy() in the $stateChangeStart and abp.ui.clearBusy() in the $stateNotFound, $stateChangeSuccess and $stateChangeError. See <a class="postlink" href="https://github.com/angular-ui/ui-router/wiki">https://github.com/angular-ui/ui-router/wiki</a>
Hi,
Which version of ABP do you use ? And can you confirm the type of Clock.Provider on the server side is UtcClockProvider when you call an AppService method or Controller's action ?
Hi,
Can you check again that all Abp related nuget packages are updated to 1.0. There might be some old dlls in the bin directory.
You can disable abp localization like this in the PreInitialize of your web module.
Configuration.Localization.IsEnabled = false;
Hi,
Just derive your action filter from ITransientDependency and injecy ISettingManager into it.
Hi,
You can create a custom AuditInfoProvider which derives from DefaultAuditInfoProvider. <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/a706b7e8f497a4afe2bb746892fd6c010b0875fc/src/Abp/Auditing/NullAuditInfoProvider.cs">https://github.com/aspnetboilerplate/as ... rovider.cs</a>.
Then you need to replace default implementation with yours in the PreInitialize method of your module.
Configuration.ReplaceService<IAuditInfoProvider, MyCustomAuditInfoProvider>();
Hi,
You can take a look at this plugIn example <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate-samples/tree/master/PlugInDemo">https://github.com/aspnetboilerplate/as ... PlugInDemo</a>.
Can you share your email address for AspNet Zero purchase operation. So, we can add your username "sayas" to premium forum section.
Hi,
Sorry, we dont know anyone. If someone did, maybe they can answer.
Hi,
Thank you for sharing your solution :). I'm sure it will help others.
Hi,
If you are using IDomainService, you dont have to use ITransientDependency because IDomainService already derives from it.
Your CourseManager class must derive from DomainService class not IDomainService interface. For a correct implementation please check Domain Service documentation here <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Domain-Services">http://aspnetboilerplate.com/Pages/Docu ... n-Services</a>