Hi, you can easily get the instance
of localization manager under abp service/controller when developing MVC application.
However, if you really need to accees it via static methods, you can try using IocManager.Instance()
to resolve the localization manager instance (though it is not recommended)
Hi, it could be your js bundle has missing files, can you check if the file exists sfter you restore the js dependencies?
wwwroot/lib/abp-web-resources/Abp/Framework/scripts/abp.js
wwwroot/lib/abp-web-resources/Abp/Framework/scripts/libs/abp.blockUI.js
Hi you can enable it by setting AllowOfflineAccess = true
in appsettings.json
it is being configured here. https://github.com/aspnetzero/aspnet-zero-core/blob/b47f8643b98c37ea062a32b046e9d140bafd983e/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Core/IdentityServer/IdentityServerConfig.cs#L39-L49
see also, http://docs.identityserver.io/en/latest/topics/refresh_tokens.html and http://docs.identityserver.io/en/latest/reference/client.html
Hi, the issue most likely is caused by js files bundling.
You can try the approach in https://support.aspnetzero.com/QA/Questions/5868#answer-6055b64c-4bcb-bb3d-8e60-39ea047fceb9
Hi, abp.blockUi is implemented by default and included in
https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Mvc/bundleconfig.json#L181
Can you check if your app-layout-libs.js
is bundled correctly?
if you are using visual studio, there is a bundler & minifier extension available in the market place that will work for it.
you can skip mapping for TotalField
in auto mapper entity-dto or dto-entity configuration.
see https://github.com/aspnetzero/aspnet-zero-core/blob/4180b6eccb0c02e14a17d1e383ed3906f6174cdd/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Application/CustomDtoMapper.cs#L109
You can navigate to root directory of *.Web.Public project and run npm run create-bundles
command.
Can I double check that you are using AspNetCore & Angular (with .NET framework 4.6.1) ?
If you are using Jquery version, JSON response is handled in the js.
See https://github.com/aspnetzero/aspnet-zero-core/blob/574ce89a4fc991938bcc47c63b2ba121bedd19a8/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Mvc/wwwroot/view-resources/Views/Account/ForgotPassword.js#L18-L38
Hi, are you using Angular or Jquery? also, what version of ANZ you are using?
It seems that the js files are not bundled correctly.
You can try running npm run create-bundles
command for the public project.
Can you also share the version of ANZ that you are upgrading from?