41 lines
696 B
QML
41 lines
696 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GridLayout
|
|
{
|
|
id: bankAccount
|
|
columns: 2
|
|
Label
|
|
{
|
|
text: qsTr("IBAN")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
TextField
|
|
{
|
|
id: iban
|
|
Layout.fillWidth: true
|
|
placeholderText: "Pflichtfeld"
|
|
placeholderTextColor: "red"
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Bank")
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
TextField
|
|
{
|
|
id: bankname
|
|
Layout.fillWidth: true
|
|
placeholderText: "Pflichtfeld"
|
|
placeholderTextColor: "red"
|
|
}
|
|
function checkBankField()
|
|
{
|
|
return (iban.text.trim() && bankname.text.trim())
|
|
}
|
|
|
|
}
|
|
|