alexandis
alexandis
**ABP 5.1.2 / Angular** I've replaced the **ABP** _Tenant_ component: ``` this.replaceableComponents.add({ component: TenantsComponent, key: eSaasComponents.Tenants, }), ``` Since this component does not have its own module (it reuses `TenantManagementModule`)...
**ABP 5.1.2 / Angular / Ef Core / separate Identity Server** Hi. Time to time I am getting stuck on requests to my back-end. There is no information in the...
Here's how the page looks like here:  The error while trying to parse dates is: > vue:6 TypeError: Cannot read property 'length' of null > at wn.eval (eval at...

Just in case: using Microsoft.AspNetCore.Mvc.Razor 2.0.4 Nuget package. Cannot use a newer version, since as I need to support Netstandard2.0 only. For some reason, the @model directive is not identitied...
I have **Netstandard2.0** lib. My markup is the class inherited from `Hangfire.Dashboard.RazorPage `abstract class (`Hangfire` package). Here's what I'm stuck on:   If i swap "using" and "namespace" (i.e....
**ABP 5.1.2** I was trying to delete data in chunks to avoid slow performance, but still getting timeout ("Task was cancelled"): public virtual async Task DeleteAsync(PlateListKeyDto key, CancellationToken cancellationToken =...
Hi. Is there a less hacky way to access modal body markup (Angular 15, if it matters) than: ``` const mapLayerModalRef = this.modalService.open(this.mapLayerContent, { centered: true, size: 'xl' }); mapLayerModalRef.dismissed.subscribe(()...
I see no possibilities to create a multi-volume archive, so I ended up with creating a bunch of chunks for uploading to the server (and then combine them and unzip...
I am trying to reopen the menu which resides in a row of re-rendered grid. I use `openChange` event handler to keep track of row ID: ``` onContextMenuOpenChange(isOpen: boolean, row:...