Base solution for your next web application

Activities of "musa.demir"

After following all the steps in this link and create dist files. You should update files in wwwroot/metronic folder which is changed. Then check metronic change log . They may change same class names and hierarchy. Check changes. Then change all necessary parts in your cshtml files.

If you want to delay between each request you can call second request in first request's subscriber. Thus, all requests run sequentially and with a delay of 10sec between them.

    this._ncDocumentService.createDefaultDocument(input)
          .pipe(delay(10000))
          .subscribe((response) => {
           //your logic
          });

This usage should work. Are you sure your logic in the subscriber method works correctly? Can you please check it?


You may also try that way.

 timer(10000).pipe(switchMap(() => this._ncDocumentService.createDefaultDocument(input)))
            .subscribe(x => {
                //your logic
            });

By the way using internal imports may increse your bundle size. You can import 'of' like:

import { of } from 'rxjs';
Answer

is "this" what you need ?

use [(ngModel)] and get select event with (onSelect)="selectMenuItem($event)"

dateRangePickerMomentModifier directive guarantees that the days you get from datarangepciker will be the moment object.

You can use datetimepicker as seen below.

https://github.com/aspnetzero/aspnet-zero-core/blob/29770cea5b9a86a21209321c72435379970f176e/angular/src/app/admin/demo-ui-components/demo-ui-date-time.component.html#L33-L40

And to get value you can use:

https://github.com/aspnetzero/aspnet-zero-core/blob/29770cea5b9a86a21209321c72435379970f176e/angular/src/app/admin/demo-ui-components/demo-ui-date-time.component.ts#L19

https://github.com/aspnetzero/aspnet-zero-core/blob/29770cea5b9a86a21209321c72435379970f176e/angular/src/app/admin/demo-ui-components/demo-ui-date-time.component.ts#L37-L42

If you dont create xml file and add your translations in runtime it will use database. There should be no mistakes. I follow your error steps and I could not reproduce that error.

On which page did you get this error ?

As i know its not implemented. You can override IConnectionStringResolver. See: https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.Zero.EntityFramework/Zero/EntityFramework/DbPerTenantConnectionStringResolver.cs

You can also create an issue on github.

Looks similar with: https://github.com/aspnetboilerplate/aspnetboilerplate/pull/4700/files It was fixed in 4.8.0

Can you please change your ~~table~~ tables as seen that link below. Then try if you have received the same error. https://www.learnentityframeworkcore.com/configuration/many-to-many-relationship-configuration

Showing 661 to 670 of 690 entries