There's some kind of bug with connecting jQuery Validate to Select2: it doesn't automatically clear errors on typing, like it does with regular controls.
Therefore, I'm forced to do a manual on-change Clear on this field only (but not any others).
$('#approverReviewers').on('change', function (e) {
//...
});
But how to do it? I don't want to do a Form-Reset, it's not the whole form.
And I don't like manual CSS removal: it's dirty and doesn't address the underlying internal Validation status, I assume? There are 2 separate parts (the field itself and its label) and I don't want to do it.
$(element).parent().removeClass('error');
$(element).remove();
Isn't there a better way?