This commit is contained in:
朱子楚\zhuzi 2023-06-27 21:02:57 +08:00
parent 16e71f01b1
commit 1566e3934e
2 changed files with 9 additions and 3 deletions

View File

@ -45,14 +45,16 @@ Rectangle {
FluTextBox { FluTextBox {
anchors.fill: parent anchors.fill: parent
text: display text: display
readOnly: true === columnSource[column].readOnly
verticalAlignment: TextInput.AlignVCenter verticalAlignment: TextInput.AlignVCenter
Component.onCompleted: { Component.onCompleted: {
forceActiveFocus() forceActiveFocus()
selectAll() selectAll()
} }
onCommit: { onCommit: {
if(!columnSource[column].readOnly) if(!readOnly){
display = text display = text
}
tableView.closeEditor() tableView.closeEditor()
} }
} }

View File

@ -62,7 +62,11 @@ TextField{
width: 20 width: 20
height: 20 height: 20
opacity: 0.5 opacity: 0.5
visible: control.text !== "" visible: {
if(control.readOnly)
return false
return control.text !== ""
}
anchors{ anchors{
verticalCenter: parent.verticalCenter verticalCenter: parent.verticalCenter
right: parent.right right: parent.right