jqxValidator is a plug-in which allows you to easily validate Html Forms. At present, the jqxValidator’s error messages are displayed like tooltips next to the form’s input fields that did not pass the validation. As of jQWidgets 2.8, you will be able to use one more option which will allow you to display error labels below the input fields.
To enable the new feature, you will have to set only one property called “hintType” and its value should be “label”.
$(‘#form’).jqxValidator({hintType: ‘label’});

To enable the new feature, you will have to set only one property called “hintType” and its value should be “label”.
$(‘#form’).jqxValidator({hintType: ‘label’});
The post jqxValidator improvements coming with jQWidgets 2.8 appeared first on Javascript, HTML5, jQuery Widgets.