Activities of "lilot18"

  • 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!

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 2 of 2 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.1.0-preview. Updated on December 05, 2025, 12:34
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.