28 lines
476 B
QML
28 lines
476 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
Item
|
|
{
|
|
property int selectedEmployee: -1
|
|
id: emDet
|
|
ColumnLayout
|
|
{
|
|
Label
|
|
{
|
|
text: qsTr("Ausgewählter Mitarbeiter " + selectedEmployee)
|
|
}
|
|
|
|
Button
|
|
{
|
|
text: qsTr("Mitarbeiter zeigen")
|
|
onClicked: contentStack.pop()
|
|
}
|
|
}
|
|
|
|
Component.onCompleted:
|
|
{
|
|
employee_model.onRowClicked(selectedEmployee)
|
|
}
|
|
}
|