16 lines
272 B
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)
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|