Textfield validator.
-
Hi
In that textfield, i need signal for entering invalid value or skipped by validator.
For Ex:
Textfield{
id:intvalue
placeholderText: 'value'
validator: IntValidator {bottom: 0; top: 9;}
}
if i enter first digit in number, it will accept and displayed in textfied. if I enter second digit, the validator skip second digit. I need signal for skipped value in the validator.Any signal is available for validator skipped values?
-
Hi
In that textfield, i need signal for entering invalid value or skipped by validator.
For Ex:
Textfield{
id:intvalue
placeholderText: 'value'
validator: IntValidator {bottom: 0; top: 9;}
}
if i enter first digit in number, it will accept and displayed in textfied. if I enter second digit, the validator skip second digit. I need signal for skipped value in the validator.Any signal is available for validator skipped values?
-
Hi @eswar
the documentation does not mention any signals concerning validation, just virtual functions. E.g. using
validate
you could implement your own signals. How to make them available in QML is another topic, though.-Michael.