Fetch applicant from database

This commit is contained in:
Yuri Becker
2025-04-19 00:55:12 +02:00
parent 2832becccf
commit 0ae153617b
5 changed files with 45 additions and 61 deletions

View File

@@ -124,9 +124,7 @@ ColumnLayout {
hoverEnabled: true
onClicked: {
contentStack.push("EmployeeDetails.qml", {
selectedEmployee: row
});
contentStack.push("EmployeeDetails.qml", { row });
}
onEntered: {
employeesTable.selectionModel.select(employeesTable.model.index(row, 0), ItemSelectionModel.SelectCurrent | ItemSelectionModel.Rows);