Hello bozkan ,
<abp-button buttonType="submit" formName="book"> {{ 'AbpUi::Save' | abpLocalization }} <i class="fa fa-check"></i> </abp-button>
<abp-button iconClass="fa fa-save float-end me-0 ms-2 custom-margin"> {{ 'AbpUi::Save' | abpLocalization }} </abp-button>
And add this in styles.css .custom-margin { margin-top: 0.2rem !important; }
Thanks,https://www.youtube.com/watch?v=R9CqTtn6Wcg 0:23:08 LeptonX - Angular Customization you can watch this video for steps. and this document https://docs.abp.io/en/abp/latest/UI/Angular/Theme-Configurations. If this not work please let me know how can I reproduce this at my end.
Hi
As you mentioned you are using custom login components and custom login button you have to create custom angular functionalities of your own with some external angular packages. Please follow the link for creating the microsoft account and use custom package for Microsoft external login. https://learn.microsoft.com/en-us/entra/identity-platform/tutorial-v2-angular-auth-code
Thanks,
https://support.abp.io/QA/Questions/6043/Not-able-to-download-the-source-code-of-the-LeptonX-Pro-theme%27s-source-code Can you please refer this Or you can follow this document for customizing layout.
For time being you can add keys like I shared. We will update this in next release.
Hi lan.dang,
Can you please share the error log with debug info.
Thanks
Hello fernando.guilherme Can you please try to add new grid with the help of abp suite and check how it is calling an api on front end and same you can follow with abp-modal like
const getData = (query: ABP.PageQueryParams) =>
this.service.getList({
...query,
...this.filters,
filterText: query.filter,
});
const setData = (list: PagedResultDto<BookDto>) => (this.data = list);
this.list.hookToQuery(getData).subscribe(setData);
Hi, Have you created authserver.pfx file and placed it in Web Package ? Have you set Load User Profile to true in IIS Once check whether, IISUSER has read and write permissions to the publish folder (Try giving Full Control) Once check this link - https://support.abp.io/QA/Questions/4845/How-to-install-app-on-IIS-having-issues-with-Cryptography
Thanks