Activities of "lilot18"

Hi, I have created a new 9.2.2 template project and a new simple entity: If I set the language to EN and filter by date, no problem: But, if I set the language to IT and try to filter, I have this error:

Hi, Thanks for the suggestion, but unfortunately it doesn’t seem to solve the issue in my case. The problem with the date parsing is still occurring when the UI language is set to Italian. Looking forward to any other ideas or a fix from the support team.

  • ABP Framework version: v9.1.3
  • UI Type: MVC
  • Database System: PostgreSQL
  • Tiered (for MVC) or Auth Server Separated (for Angular): no

Hi,

I have all my dates set up as DataOnly. When I switch the UI language to Italian and try to filter by date, I get an error if the day is greater than 12. For example: The value '31/07/2025' is not valid for PaymentDateMin. It seems that the date is being parsed in US format (MM/DD/YYYY) instead of the correct format based on the selected language (in this case, DD/MM/YYYY for Italian). Is there a way to automatically parse date filters according to the language set in the UI? Thanks in advance for your help!

Hi, thank you very much. I imagine this applies to all entities, but I would like to do it for just one entity.

ABP Framework Configuration

  • ABP Framework version: v9.0.2
  • UI Type: MVC
  • Database System: PostgreSQL
  • Tiered: Yes

Issue Description

Hello, I need to extend the actions on an entity.
I tried following the steps in the guide, but I can't get it to work:
🔗 ABP Entity Action Extensions Guide

My entity is invoice:

So, I added the following code to the TesoreriaDigitaleWebModule page:

Configure<AbpBundlingOptions>(options =>
{
    options.ScriptBundles.Configure(
        typeof(Pages.Invoices.IndexModel).FullName,
        bundleConfiguration =>
        {
            bundleConfiguration.AddFiles(
                "/Pages/Invoices/my-user-extensions.js"
            );
        });
});

JS:

var clickMeAction = {
    text: 'Click Me!',
    action: function (data) {
        alert("test");
    }
};
abp.ui.extensions.entityActions
    .get('invoice')
    .addContributor(function (actionList) {
        actionList.addTail(clickMeAction);
    });

Additionally, I wanted to know if there's a smarter way (using only the index.js page) to add an action (while still staying within the custom-code blocks).

Showing 1 to 5 of 5 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 18, 2025, 07:10