performance issue data grid2

1
hello community, i currently have a problem in my running app. I'm still looking for the cause and I think I've found it. there is a kind of loading loop and the app no ​​longer responds.   standard scenario: I use a Data Grid 2 to display data (orders). When I click on a row, the (selected order) opens in a detail view page.   Each user wants to filter user-specifically and save the filter criteria. I save the filters according to documents https://docs.mendix.com/appstore/modules/data-grid-2/#72-drop-down-filter Saving works great. If I log out and log in again, the last saved filters are also loaded.   Problem: However, if I filter date columns and then try to click on a specific row from the filtered data grid, the detail view page does not load and I often get an error. enum filter and text filter no problem, only the date filter seems to cause the problem.   it seems to be due to the dataGrid's dateFilter. I use the current version 2.4.1   ERROR MESSAGE: An error occurred while executing an action of Kabelmontage.Auftrag_Overview.dataGridDateFilter6: Failed to fetch Error: An error occurred while executing an action of Kabelmontage.Auftrag_Overview.dataGridDateFilter6: Failed to fetch at http://localhost:8080/mxclientsystem/mxui/mxui.js?637993608293216233:68:138446 at we (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993608293216233:24:6501) at i (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993608293216233:24:6402) at x (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993608293216233:66:5472) Failed to fetch Error: Failed to fetch at g (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:68:20204) at async http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:68:5441 at async a (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:68:18687) at async p (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:68:20021) at async http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:68:30968 at async h.retrieveByXPath (http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:66:25696) at async http://localhost:8080/mxclientsystem/mxui/mxui.js?637993585162748377:68:174058   can anyone help me? :-)
asked
1 answers
1

In MxHacks an interesting demonstration was given where the filter to apply on a list was implemented as variables of the XPath as logic in a DataSource Microflow. 

I didn’t answer your question, but this would work for you (I think).

answered