IntValidator使用qml

时间:2012-11-27 07:15:26

标签: qml

我是qml的新手。在我的文本输入框中,使用intValidator仅使用9位数字。如何阅读超过10位???

任何人都可以帮助我。

代码在这里

TextInput 
{       
    id: uid  
    maximumLength: 100                      
    width: maximumLength * 20    
    focus: true     
    validator: IntValidator{bottom:0; top:9999999999}   
    KeyNavigation.down: bioSelector    
}

1 个答案:

答案 0 :(得分:3)

您可以这样做:

validator: RegExpValidator { regExp: /\d+/ }