OK, I can confirm that the above code IS WORKING, but there appears to be something wrong with my validation rules.
I am trying to validate a SELECT box to ensure an option is selected. It appears I must use a custom rule for this. My code is:
var thisForm = $('#project-form');
thisForm.jqxValidator({
rules: [
{ input: '#project-title', message: 'Project Title is required', action: 'keyup, blur', rule: 'required' },
{ input: '#project-client', message: 'Client is required',
rule: function(input){ if ($(input).val() == '') return false; }}
]
}).on('validationSuccess', function (event) {
alert('ready to post');
});
The above validation rules work in that they generate the validation message when the fields are not populated, but with the ‘#project-client’ rule in place the validator won’t fire the ‘validationSuccess’ event. It works fine if the ‘#project-client’ rule is removed.
Any thoughts?