Hello,
According to the Object Extensions documentation, I have an idea that I hope the ABP Framework can help bring to life.
As described in the documentation, ABP allows adding extra properties to entities by defining the property name, data type, and default value. This is a powerful feature, and I’m planning to use it in an ERP application with two related pages:
First Page: This page enables users to add custom properties. For example, I might define a string property (prop - string), and the user can enter values manually through the UI. ABP makes this part straightforward by allowing extra properties to be added with minimal effort.
Second Page: I would like to display the values entered by the user in the first page. This page should dynamically reflect the custom property values. However, based on my understanding, ABP does not currently support automatically displaying these extra values on a separate page out of the box.
To clarify my idea further, I’ve attached two images:
Image 1: Shows the code setup and the UI where the user inputs custom values. Image 2: Illustrates how I would like to display those user-defined values on another page.
I believe this feature could add significant flexibility and value to applications built with ABP, and I would appreciate any guidance or suggestions on how this can be implemented, or whether there are existing patterns or tools within ABP to support this kind of functionality.
Thank you for your continued support and efforts in maintaining such a great framework. Best regards
hi
I would like to configure my custom SMTP settings as the default email sender configuration in my ABP application, rather than using the default ABP settings (like "noreply@abp.io" and "127.0.0.1").
How can I make my custom settings persist and always be used by the application, even after restarting the app or making other configuration changes?
i have attachment imgs for default email and email i want to use when open this section
so where can i change it?
thanks
hi i want to upgrade LeptonX from 3.0* to 3.2.0 without affecting with my project version as i use 8.0.2 and mr.EngincanV told me that there is no cli to do that behavior so how to upgrade it manually to keep my solution v8.0.2 but LeptonX v3.2.0 thanks
hi this is second time asking this question and no body give me the solution so i asked again within new task i got problem within (web.public) layer which is i can't change 1- favicon 2- Lepton logo load then my logo load i want to avoid this behavior i attached video for the problem and this is some screenshots for what i did i changed the extension to .ico and .svg nothing work
the video: https://streamable.com/a6qg11
Could you provide us with the source code of eShopOnAbp v 8.0.2
hi i want to make a logic within razor page if i open with language (en) so do something else if (ar) do another thing so i used @using System.Globalization @{ var currentCulture = CultureInfo.CurrentUICulture.Name; var isArabic = currentCulture.StartsWith("ar"); } <div class="completion-message text-center" style="display: none;"> <div class="modal d-block mx-auto" tabindex="-1" style="background:#cccccc96;"> <div class="modal-dialog modal-xl"> <div class="modal-content w-75"> <div class="modal-body"> @if (isArabic) { <h1>مبرووووووووووووك</h1> } else { <img src="/images/Wizard/congrat.png" alt="congratulation, finished the setup" class="w-100" /> } </div> <div class="modal-footer"> <button class="btn btn-primary" id="congrats">Ok</button> </div> </div> </div> </div> </div>
but not work ... so how to know which culture user open with
i mean this how to know which language user select ??