Files
BoilerPlate/Content/Panel/js/pages/crud/forms/widgets/bootstrap-select.js
2025-07-23 18:54:59 +03:30

21 lines
379 B
JavaScript

// Class definition
var KTBootstrapSelect = function () {
// Private functions
var demos = function () {
// minimum setup
$('.kt-selectpicker').selectpicker();
}
return {
// public functions
init: function() {
demos();
}
};
}();
jQuery(document).ready(function() {
KTBootstrapSelect.init();
});