TG-PlatformPlus/qml/EditLst.qml

16 lines
272 B
QML

import QtQuick
EditLstForm {
id: self
anchors.fill: parent
property var _readonly: true
visible: true
Connections{
target: self
function onDeleteEditLstClick(row)
{
self.cmdLstmodel.remove(row)
}
}
}