blob: dba186e765f42b3bf15992d94c358646d0097781 [file] [log] [blame]
import QtQuick 2.2
Item {
property QtObject input1: input1
property QtObject input2: input2
width: 800; height: 600;
Column{
TextInput { id: input1;
property bool acceptable: acceptableInput
validator: RegExpValidator { regExp: /[a-zA-z]{2,4}/ }
}
TextInput { id: input2;
property bool acceptable: acceptableInput
validator: RegExpValidator { regExp: /[a-zA-z]{2,4}/ }
}
}
}