Documents: Doubleclick-Download like in Archive

This commit is contained in:
cgfhtw
2025-06-25 16:50:36 +02:00
parent c9cc86fdbd
commit af2aa416aa
2 changed files with 20 additions and 0 deletions
@@ -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)
);
}
}
}
]
}