Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "ryancyq"

Hi, you can set random password when creating such user. This is how abp/anz handles external authentication.

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/f3c49e26c09cc2acd8b9948296c74330004e7185/src/Abp.ZeroCore/Authorization/AbpLoginManager.cs#L307-L311

If you want to override the styling across the app, you can create a abp.spin-overrides.js with the overriden configuration and add this file after abp.spin.js (also add it into bundle config).

For bundleconfig.json, you can look fort /app-layout-libs.js and /account-layout-libs.js

can you share the code for CidadeVanLegalLookupTableModal?

if your realtime button adding/removing logic is not specific to only a view/page. You can move these customisation into the mod itself to have better control over the modal lifecycle.

you can override with the following.

abp.libs.spinjs = {
        spinner_config: {
            lines: 11,
            // more config
        },

        //Config for busy indicator in element's inner element that has '.abp-busy-indicator' class.     
        spinner_config_inner_busy_indicator: {
            lines: 11,
            // more config
        }
    };

for configuration details, see https://spin.js.org/#usage

Hi, you can try installing BundlerMinifier fr visual studio market place and follow the steps in https://support.aspnetzero.com/QA/Questions/5868#answer-6055b64c-4bcb-bb3d-8e60-39ea047fceb9

Hi, do you mean azure ad authentication for some of the tenants and the rest is still using classic authentication?

If so, there has been a discussion around this at https://github.com/aspnetzero/aspnet-zero-core/issues/369

If not, to authenticate angular with azure ad, you can use OpenId connect approach. See https://github.com/aspnetzero/aspnet-zero-core/issues/1292#issuecomment-408000612

Hi, please share the full error stack trace of the internal server error.

Hi, there seems to be minus sign before the files. Can you check the files physically on your computer instead of visual studio.

After that, please try to bundle & minify on app-layout-lib.js and make sure all js files are bundled into it

Hi, you can try debug the dictionaries in the LocalizationManager

e.g refering to the method in Abp.Localization.LocalizationHelper

LocalizationManager.Value.GetSource(sourceName).DictionaryProvider.Dictionaries.Values

You say that it is not recommended to use IocManager.Instance(). Could you explain why this is please?

It was under the assumption that you are using IocManager.Instance() in your application code.

However, it seems that you want to access localization source from azure function. Currently there is no such built-in functionality.

You need to share the code for LocalizationHelper.cs.

Showing 391 to 400 of 573 entries