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

Activities of "ryancyq"

Hi, you can try the approach here.

https://github.com/aspnetzero/aspnet-zero-core/issues/1445#issuecomment-408838909

Hi, are you using Angular or Jquery version?

you can try to narrow the issue by:

  1. test abp.ui.block() , if this works, the lib is working
  2. test abp.ui.block('.my-class') if doesn't work, the css selector might be incorrect
  3. test abp.ui.setBusy() if this works
  4. test abp.ui.setBusy('.my-class') if this works

as for the spinner, what is the version of your ANZ project?

@exlnt can you try this $(.login-form) in your browser console for the page that setBusy() will run on? Does it return any result?

abp.ui.setBusy('.login-form');

Hi @exlnt, are you uing the code above in a login page? Can you try also if abp.ui.setBusy($('.login-form')); works for you?

Hi @krishna , the issue might be RedisConnectionException.

Can you check on redis configration?

Answer

Hi @maharatha, you need to add your featuer under SetFeatures() of AppFeatureProvider.cs

See more details at https://aspnetboilerplate.com/Pages/Documents/Feature-Management

Hi @mgarcia, can you try to call Complete() in the last line of your scope

User user = null;
using (var t = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = System.Transactions.IsolationLevel.ReadUncommitted}))
{
    {
        user = await UserManager.GetUserByIdAsync(input.UserId);
        t.Complete();
    }
}
Answer

Hi @avanekar02, xamarin chat is currently not implemented in ANZ. You can see the discussion at https://github.com/aspnetzero/aspnet-zero-core/issues/1559

Also, the feature request is tracked at https://github.com/aspnetzero/aspnet-zero-core/issues/1382

Answer

Hi @larsfk, yes, identity server 4 is OpenId compatible,

You can follow the steps for OpenId configurations at https://github.com/aspnetzero/aspnet-zero-core/issues/1292#issuecomment-408000612

Showing 411 to 420 of 573 entries