1 / 1
Oct 2020

Dear Developers,
I have have an application with a next match list. The application is working fine in general, but I have the following Problem:
When I call the list from inside an iframe of another application, the filters get lost at the second call of the get_rows function.
So at first I see the correctly filtered entries and as I scroll down the list when get_rows is called again to retrieve the next 50 records the col_filter array is completely messed up.

For example:

First call:

(11) 15/10/2020 06:52:56 Array
(
[get_rows] => acemailstor.acemailstor_ui.get_rows
[filter_label] =>
[filter_help] =>
[no_filter] => 1
[no_filter2] => 1
[no_cat] =>
[never_hide] => 1
[lettersearch] =>
[searchletter] =>
[options-selectcols] => Array
(
[mail_id] =>
)

[start] => 0
[order] => ro_datetime_received
[sort] => DESC
[col_filter] => Array
    (
        [status] => 0
        [infolog_id] => 1
    )

Second call

(11) 15/10/2020 06:55:00 Array
(
[get_rows] => acemailstor.acemailstor_ui.get_rows
[filter_label] =>
[filter_help] =>
[no_filter] => 1
[no_filter2] => 1
[no_cat] =>
[never_hide] => 1
[lettersearch] =>
[searchletter] =>
[options-selectcols] => Array
(
[0] => Array
(
[value] => mail_id
[label] =>
)

    )

[start] => 25
[order] => ro_datetime_received
[sort] => DESC
[col_filter] => Array
    (
        [date_from1] => 
        [date_to1] => 
        [date_from2] => 
        [date_to2] => 
        [acorder_id] => 
        [client_id] => 
    )

How could I debug this and see what exactly happens when I scroll down…
Thank you for your support and
BR
Alex