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

Activities of "MellowoodMedical"

By the way, the "isVisibleToClients" is working fine with the default "AppSettingProvider.cs".

Hi maliming, the app is building on ABP Zero 7.2.3 with .net core 2.2. As the code shown above, I didn't add any ClientVisibilityProvider for StripePrivateKey.

new SettingDefinition(PatientPortalSettings.Payment.StripePrivateKey, "", scopes: SettingScopes.Tenant, isVisibleToClients: false, group: paymentSettingsGroup),

nvm i got it. It seems like i missed the Module.cs file

Hi,

  1. No error msg, chrome is hault as well, which i need to end the chrome.exe from task manager
  2. Angular version : 6

Hi,

Yes you are right and the background job is a class.

I try to use IDBContextPorvider and the contructor does create succesfully by passing mockMyDbContextProvider.Object.GetDbContext() as the parameter. Now i am confused how to actually create fake datas inside the dbcontext and pass it down the road?

           var mockMyDbContext = new Mock<MyDbContext>();
            List<Tenant> tenants = GetTenants();
            var mockTenantsSet = new Mock<DbSet<Tenant>>();
            mockMyDbContext.Setup(m => m.Tenants).Returns(GetQueryableMockDbSet<Tenant>(tenants));

            List<Role> roles = GetRoles();
            var mockRolesSet = new Mock<DbSet<Role>>();
            mockMyDbContext.Setup(m => m.Roles).Returns(GetQueryableMockDbSet<Role>(roles));
            return mockMyDbContext;

I used the above code to generate the fake data in my mockdbcontext and i am kind of confused how to combine it with the idbcontextprovider and pass it to the method that i want to test?

Thanks

Thanks, searching for solution for a long time and finally your answer appears :)

Thanks. There is one more question, we want to change the theme base on the user roles. So there are two roles in the system and each of them will have their own theme. Any suggestions on how to implement that?

conffiguration issue

Hi ,

I have implemented the datePickerMomentModifier but no luck. This to convert every date as moment but the actual issue here is when using date pipe with different locale like 'zh-Hans' or 'swedish' on bootstrap date picker.

Hi ,

Looks like the issue only exists for Bootstrap date picker while displaying a date field like above.

when displaying the same date with pipe on a td element , displays the correct date. Let me know if you need any further information.

Showing 21 to 30 of 52 entries