Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
I've added new Entity described here in .Core projekt - my code below. like https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Developing-Step-By-Step-Angular-Creating-Person-Entity
Now I try step 2 "Database Migrations for " - https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Developing-Step-By-Step-Angular-Database-Migrations-Person-Entity but the migration class is not generated correctly - it doesn't contain the code for generation of the new entity. Any ideas?
My new Entity namespace XYZ.WorkFlow {
[Table("ElsaWorkFlowHistoryDetails")]
public class ElsaWorkFlowHistoryDetails : FullAuditedEntity, IMustHaveTenant
{
[Column("ElsaWorkFlowHistoryDetailsId")]
[Key]
public override int Id { get; set; }
...
}
}
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi, we needs to implement "Send mass notifications & emails to users (new version 11.3 feature) - could that be implemented in previous version and if yes how? Thanks
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
I've a problem on one server of customer - hosted on IIS: I've Angular FE and WEB API backend running on IIS as separate websites, same URL, different ports http://myURL.de:84, the Backend under port http://myURL.de:85
My setting is: "CorsOrigins": "http://*.myURL.de
I get this error - any idea whats wrong? Access to XMLHttpRequest at 'http://myURL.de:84/AbpUserConfiguration/GetAll?d=1658404623121' from origin 'http://myURL.de:85' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. :84/AbpUserConfiguration/GetAll?d=1658404623121:1 Failed to load resource: net::ERR_FAILED
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
ASPZERO - Luxon instead Moment datetime component:
We have a huge problem after migrating from 10.2 to 11.1 due to new Luxon component - why did you do this, and do you have something like migration path?
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
on customer installation, emails can not be send from public site - I get following error: "System.Net.Mail.SmtpException: Server does not support secure connections."
How could that be solved?
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi, I've a problem, that I want to mark multiple cells (of for ex. a table) and add style (orange color) to it. It is working very slow - and we asked some support of a control producer for help.
They find out the following - that is must be an application problem of (ASPZERO?)
"We have checked this issue by adding the HTML table with clickable td element in your application and when we ctrl+click the td element of table we added the ‘custom-class’ to that respective td to change background. The same issue reproducing in that HTML table too. Please refer below Video demo for more information.
Based on our validation ‘custom-class’ class added immediately to the respective element but the style reflection only taking too much time. So please check the issue at your end. "
This is the table - nothing special:
<div id="space" [class]="'kt-grid__item kt-grid__item--fluid'"> <div class="kt-portlet kt-margin-b-0"> <div class="kt-padding-0"> <div id="target" [busyIf]="isSchedulerServiceGettingCalled" [ngStyle]="{'height': schedulerHeight}"> <div [ngClass]="showPlanningNeeds?'height70': (totalRecordsCount > pageSize ? 'height100' : 'height96' )">
<table class="checkTables">
<tr>
<td>first</td>
<td>second</td>
</tr>
<tr>
<td>first</td>
<td>second</td>
</tr>
<tr>
<td>first</td>
<td>second</td>
</tr>
</table>
.checkTables td { border: 1px solid gray; }
in ...Host\src\styles.css
Any idea how to fix that?
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
We needs to integrate ELSA 2 into Angular - has anyone done that so far in Angular ?
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi, I've tested with google https://developers.google.com/speed/pagespeed/ the page speed - just of the login page - and got 16 from 100 points. I'm wondering how to fasten up the speed - these where some recomendations. Any hints?
You can reduce unused JavaScript and defer loading scripts until they are needed to reduce data consumption due to network activity. More informationLCP URL
Transfer size
Possible savings /main-es2015.e9b116f....js(<myURL>.com)
1,144.8 KiB
892.2 KiB /8-es2015.f0c553f....js(<myURL>.com)
634.4 KiB
592.8 KiB /16-es2015.2b11d70….js(<myURL>.de)
834.6 KiB
560.1 KiB /scripts.f76b825....js(<myURL>.com)
216.9 KiB
105.8 KiB /1-es2015.fc5e100....js(<myURL>.com)
112.0 KiB
88.3 KiB /17-es2015.21960b5….js(<myURL>.de)
74.7 KiB
57,5 KiB
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
is it possible to authenticaticate with kerberos (SSO)?
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Is there any functionality to store data on client side and proceeed later - for ex. when offline - and send them to backend when client again online? Thanks