Your message did not reach some or all of the intended recipients.
Subject: Angular Lepton Theme
Sent: 12.02.2021 18:18
The following recipient(s) cannot be reached:
'張銀展' on 12.02.2021 18:18
552 5.7.0 message content and attachment content guidelines. a15sm5844736edy.86 - gsmtp
ABP Info on 12.02.2021 18:18
552 5.7.0 message content and attachment content guidelines. a15sm5844736edy.86 - gsmtp
I haven't used tye therefore I can't predict anything. but for the ABP part, I also couldn't see an ABP code in the ex stack.
Hello
All automatic generated classes and repositories seem invalid. A piece of the summary seems to be included every time it should just need 'DynamicFieldEntityType type'
- DynamicFieldGroupDto
- DynamicFieldGroupCreateDto
- DynamicFieldGroupUpdateDto
- GetDynamicFieldGroupInput
- DynamicFieldGroup
- EfCoreDynamicFieldGroupRepository
- IDynamicFieldGroupRepository
can you share us your entity.json and enum class.
it's in your solution root directory .\suite\entities
folder.
for the Angular side we have tried to reach you via email but your mail returns error with The following recipient(s) cannot be reached: yin****@gmail.com
Hi
You can download the full project Volo.Abp.AspNetCore.Mvc.UI.Theme.Commercial
you are working with public IP and you cannot bind an SSL certificate to an IP. Identity Server doesn't work when there's no HTTPS. This is not an ABP related issue.
because it will also be shown on the register page and I guess you want that.
I think you are making a JS exception. var code;
is defined and also being used before data is being fetched from achievementTypeService.get($typeId)
and that's why it's undefined. this is kinda out of ABP scope but I suggest you to refactor this as below
var createNewOption = function(newCode){
//creating an option for another select
temp = {
id: $achievementRegisterId,
text: '<span><b>' + newCode + '</b> ' + $achievementRegisterName + '</span>' // but not getting the value here
};
//adding the new option in the Select dropdown
newOption = new Option(temp.text, temp.id, false, false);
qualSelect.append(newOption).trigger('change');
}
achievementTypeService.get($typeId)
.then(function (result) {
createNewOption(result.code);
});
Your Identity Server service is running on HTTP. As far as I know, Identity Server requires HTTPS. can you check your both API and Identity Server endpoints are fully functional.