Hi,
When I’m trying to validate a form with the following controls:
. JqxTextboxes
– JqxComboBoxes
But when I click “Validate” button and try to receive the response of the validate function I get “Undefined” and it doesn’t pass through the ValidationSuccess Event.
This is my code:
var form = windowHTMLObject.find('form');
form.jqxValidator({
rules: this._validator,
hintType: 'label',
animationDuration: 0
});
form.on('validationSuccess', function (event) {
//Some custom code...
});
I’need to know what I’m doing wrong or if I’m missing something.
Thanks in advance for your help.