36 lines
1017 B
JavaScript
36 lines
1017 B
JavaScript
|
/**
|
||
|
* Add Permission Modal JS
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
// Add permission form validation
|
||
|
document.addEventListener('DOMContentLoaded', function (e) {
|
||
|
(function () {
|
||
|
FormValidation.formValidation(document.getElementById('addPermissionForm'), {
|
||
|
fields: {
|
||
|
modalPermissionName: {
|
||
|
validators: {
|
||
|
notEmpty: {
|
||
|
message: 'Please enter permission name'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
plugins: {
|
||
|
trigger: new FormValidation.plugins.Trigger(),
|
||
|
bootstrap5: new FormValidation.plugins.Bootstrap5({
|
||
|
// Use this for enabling/changing valid/invalid class
|
||
|
// eleInvalidClass: '',
|
||
|
eleValidClass: '',
|
||
|
rowSelector: '.col-12'
|
||
|
}),
|
||
|
submitButton: new FormValidation.plugins.SubmitButton(),
|
||
|
// Submit the form when all fields are valid
|
||
|
// defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
|
||
|
autoFocus: new FormValidation.plugins.AutoFocus()
|
||
|
}
|
||
|
});
|
||
|
})();
|
||
|
});
|