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!
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
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"
);
});
});
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).

