Files
lis/public/high/assets/pages/jquery.form-advanced.init.js
2025-01-27 08:16:55 +07:00

61 lines
1.2 KiB
JavaScript

/**
* Theme: Highdmin - Responsive Bootstrap 4 Admin Dashboard
* Author: Coderthemes
* Form Advanced
*/
jQuery(document).ready(function () {
// Select2
$(".select2").select2();
$(".select2-limiting").select2({
maximumSelectionLength: 2
});
$('.selectpicker').selectpicker();
$(":file").filestyle({input: false});
});
//Bootstrap-MaxLength
$('input#defaultconfig').maxlength({
warningClass: "badge badge-success",
limitReachedClass: "badge badge-danger"
});
$('input#thresholdconfig').maxlength({
threshold: 20,
warningClass: "badge badge-success",
limitReachedClass: "badge badge-danger"
});
$('input#alloptions').maxlength({
alwaysShow: true,
separator: ' out of ',
preText: 'You typed ',
postText: ' chars available.',
validate: true,
warningClass: "badge badge-success",
limitReachedClass: "badge badge-danger"
});
$('textarea#textarea').maxlength({
alwaysShow: true,
warningClass: "badge badge-success",
limitReachedClass: "badge badge-danger"
});
$('input#placement').maxlength({
alwaysShow: true,
placement: 'top-left',
warningClass: "badge badge-success",
limitReachedClass: "badge badge-danger"
});