mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Implement csv_fields = false to disable export button
This commit is contained in:
parent
9248942e9f
commit
d8fcb574a6
@ -1309,7 +1309,7 @@ var et2_nextmatch_header_bar = et2_DOMWidget.extend(et2_INextmatchHeader,
|
||||
this._setup_favorites(settings['favorites']);
|
||||
|
||||
// Export
|
||||
if(!settings.no_csv_export)
|
||||
if(typeof settings.csv_fields == "undefined" || settings.csv_fields != false)
|
||||
{
|
||||
var definition = settings.csv_fields;
|
||||
if(settings.csv_fields === true)
|
||||
|
Loading…
Reference in New Issue
Block a user