mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
Set row_modified setting so nextmatch can filter out unchanged rows, and not send them back to the client again
This commit is contained in:
parent
4a5d906e48
commit
42ee153c30
@ -229,6 +229,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'manual' => $do_email ? ' ' : false, // space for the manual icon
|
||||
//'actions' => $this->get_actions(), // set on each request, as it depends on some filters
|
||||
'row_id' => 'id',
|
||||
'row_modified' => 'modified',
|
||||
'favorites' => true,
|
||||
'placeholder_actions' => array('add')
|
||||
);
|
||||
|
@ -159,6 +159,7 @@ class calendar_uilist extends calendar_ui
|
||||
'filter_onchange' => "app.calendar.filter_change",
|
||||
'header_left' => 'calendar.list.dates',
|
||||
'row_id' => 'row_id', // set in get rows "$event[id]:$event[recur_date]"
|
||||
'row_modified' => 'modified',
|
||||
'favorites' => true
|
||||
);
|
||||
}
|
||||
|
@ -871,6 +871,7 @@ class timesheet_ui extends timesheet_bo
|
||||
'filter_onchange' => "app.timesheet.filter_change();",
|
||||
'filter2' => (int)$GLOBALS['egw_info']['user']['preferences'][TIMESHEET_APP]['show_details'],
|
||||
'row_id' => 'ts_id',
|
||||
'row_modified' => 'ts_modified',
|
||||
//'actions' => $this->get_actions(),
|
||||
'default_cols' => '!legacy_actions', // switch legacy actions column and row off by default
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user