Bootstrap バリデーターを使用していますが、問題は、すべての値が有効になった後に送信ボタンを有効にしたいが、それができないことです。
$(document).ready(function() {
$('#ans_frm').bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
submitButtons: 'button[type="submit"]',
fields: {
ans: {
group: '.col-md-8',
validators: {
stringLength: {
min: 3,
max: 100,
message: 'The answer must be more than 2 and less than 100 characters long'
},
notEmpty: {
message: 'The answer must not be empty'
}
}
}
}
}).on('status.field.bv', function(e, data) {
disableSubmitButtons(false);
}
});
});