I am having the same issue.
Hi,
Thank you for your response regarding the use of event handlers to refresh the Redis cache during CRUD operations on Organization Units. Your guidance has been helpful, and our backend implementation works perfectly now.
However, I realize that I didn’t fully explain the JavaScript-related part of my initial question. While I briefly mentioned JavaScript alongside C#, I was hoping to also receive some advice on how to handle UI updates dynamically on the front end.
In application, we have a toolbar icon that displays all Organization Units the user has permission to access. Inspired by Maliming's approach (Switching Between Organization Units), we’d like to ensure this UI element is updated dynamically when we add users or roles to Organization Units.
Specifically, we need following:
Is there a way to refresh this toolbar icon using JavaScript without requiring a full page reload?
If the above is not possible, is it possible to trigger a full page reload via JavaScript whenever we add or remove user or roles to Organization Units?
For example, using mechanisms like createModal.onResult() or listening for events such as $("#Form").abpAjaxForm().on('abp-ajax-success').
Any suggestions or recommendations for handling this functionality in line with ABP Framework best practices would be greatly appreciated.
If none of the above approaches are possible, we’ll simply explain to our end users that they need to press F5 to reload the page after adding users or roles. 😊
Thank you once again for your support.
Hi,
Subject: Issue with File Handling using new File Type in Create and Edit Modals (ABP Suite v8.3.1) MVC Razor Page
I’ve identified an issue related to file handling in the application while using ABP Suite v8.3.1. I followed the standard process by creating two properties—one for string and one for File—without making any manual changes to the generated code. Here are the specific issues:
File Submission: When a user selects a file for the first time on create modal, the file is saved as expected. However, if the user cancels the submit action on the modal, the file is not deleted.
File Deletion on Edit: In the edit modal, when a user clicks the delete button, it allows the user to select a new file, but the previously uploaded file is not deleted from the system.
I’m not sure if this is the correct place to report such issues, as I couldn’t find a dedicated section for ABP Suite bugs and fixes.
Hi Maliming,
Thank you for your response.
I understand the need for variables and expressions in the templates, which is a key reason for using text templates—to create dynamic documents (contracts, annex, invoices, etc.) that automatically pull data from the application. Additionally, they allow end-users to customize documents according to their needs.
We are aware that parts within {{ }} come from the application and should not be modified. For example:
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec laoreet,
dolor vel condimentum lobortis, lectus justo vehicula libero, ac suscipit quam lorem nec lacus.
{{model.organization_name}}, lorem ipsum:
</p>
However, our current text template becomes difficult to modify for documents that are several pages long—often 5, 6, or even more pages. I understand that implementing an HTML editor for text templates may not be a simple task, but it would significantly enhance working with these documents and provide additional flexibility for end-users.
We would appreciate it if you could consider this suggestion and explore the possibility of implementing such an improvement.
Thanks
HTML editor for Text Templates to enable end-users to easily edit text templates without requiring HTML knowledge. Example: HTML Editor Example
Ok, great thanks.
Ok, this is great for us it works.
If it's not a problem to tell me, we set the default language to Serbian, as you can see in the first picture, but always when we log in for the first time, it is English.
Thanks.
Hi,
It seems we didn't understand each other well, sorry maybe I didn't explain well, this command abp translate -c sr -r en compares sr.json and en.json and I already translated it, it made this, everything matches:
{ "ReferenceCulture": "en", "TargetCulture": "sr", "Resources": [] }
I need a translation into Serbian, by default teat comes from Abp, and when we update Abp you add new texts. These values do not exist in en.json
For example, in Language Texts under Resource Name, they have options AbpAccount, AbpAuditLogging and others. How should we translate these?
Sorry, please correct me if I misunderstood something
Hi,
I noticed, if this can help, that the AbpLanguageTexts table is empty when we create a new tenant, when i manually insert (backup/restore) data from the host table (using dbeaver), then the translation works. Maybe we should somehow seed this table when we create the tenant? We create the tenant through abp, and we choose that it is a separate database.
Thanks.
Hi,
We decided for now, to leave it as it is at the moment. If in the future there is a need to customize the Text Templates module, I will write for InlineContent page code.
Thanks.