Index: sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml =================================================================== diff -u -re125bd5cf13750eaf241d518b9c846139afaa81c -r8a5dbf556a66524fbe4b60ac1573182a0bd27617 --- sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml (.../PostTreatmentStack.qml) (revision e125bd5cf13750eaf241d518b9c846139afaa81c) +++ sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml (.../PostTreatmentStack.qml) (revision 8a5dbf556a66524fbe4b60ac1573182a0bd27617) @@ -36,23 +36,34 @@ signal disposablesRemovalBack () PostTreatmentBase { id: _patientDisconnectionConfirm - property int stackStepIndex : 0 + property int stackStepIndex : 0 header.confirmVisible : true title.text : qsTr("Patient Disconnection") instructionBased : true onConfirmClicked : _root.patientDisconnectionConfirm() } PostTreatmentReview { id: _treatmentReviewConfirm - property int stackStepIndex : 1 + property int stackStepIndex : 1 header.confirmVisible : true title.text : qsTr("Treatment Review") instructionBased : false onConfirmClicked : _root.treatmentReviewConfirm() + onItemClicked : { + _detailTest.title.text = itemsText[vIndex] + push(_detailTest) + } } + PostTreatmentBase { id: _detailTest + property int stackStepIndex : 1 + onBackClicked : pop() + header.backVisible : true + header.confirmVisible : false + } + PostTreatmentBase { id: _disposablesRemovalConfirm - property int stackStepIndex : 2 + property int stackStepIndex : 2 header. backVisible : true header.confirmVisible : true title.text : qsTr("Disposables Removal")