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

Activities of "mark.montesa"

Ok, thanks.

Thanks. Is there also a documentation on how to setup domains/subdomains on azurewebsites, so we can test it out?

To answer your question.

What is your product version?  - aspnetzero7.1
What is your product type (Angular or MVC)? - Angular
What is product framework type (.net framework or .net core)? - .net core

Thanks,

Question

Hi,

I would like to ask if you can help us on how to set up domain for different tenant on aspnetzero. And how to create subdomain on azure server, for us to test the multitenancy domains.

Thanks.

Email sent.

Thanks.

already did it, but no luck. it just happen after the upgrade to aspnetzero 7.1.

Question

Hi, I just want to ask if you can help about the loader of primeng table. On azure website the loader is hiding too fast even the table is not yet populated. But on local machine using the same database connection it is not happening. Hope you can help me with this. Heres an snippet of the code:

ts file:

getTagTypes(event?: LazyLoadEvent) {
    if (this.primengTableHelper.shouldResetPaging(event)) {
        this.paginator.changePage(0);
        return;
    }

    this.primengTableHelper.showLoadingIndicator();

    this._tagTypeAppService.getTagType(
        undefined,
        this.filterText,
        this.primengTableHelper.getSorting(this.dataTable),
        this.primengTableHelper.getMaxResultCount(this.paginator, event),
        this.primengTableHelper.getSkipCount(this.paginator, event)
    ).pipe(finalize(() => this.primengTableHelper.hideLoadingIndicator() ))
    .subscribe(result => {
        this.primengTableHelper.totalRecordsCount = result.totalCount;
        this.primengTableHelper.records = result.items;
        this.primengTableHelper.hideLoadingIndicator();
    });
}
Showing 21 to 27 of 27 entries