mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-17 12:09:28 +00:00
Documents: Doubleclick-Download like in Archive
This commit is contained in:
@@ -199,6 +199,16 @@ export default {
|
||||
title: this.$p.t('global', 'dokument')
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
event: "rowDblClick",
|
||||
handler: (e, row) => {
|
||||
if (row.getData().vorhanden) {
|
||||
window.open(
|
||||
this.actionDownloadFile(row.getData().akte_id)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -207,6 +207,16 @@ export default {
|
||||
title: this.$p.t('global', 'dokument')
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
event: "rowDblClick",
|
||||
handler: (e, row) => {
|
||||
if (row.getData().vorhanden) {
|
||||
window.open(
|
||||
this.actionDownloadFile(row.getData().akte_id)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user