"use strict"; // Class definition var KTFormsSelect2Demo = function () { // Private functions var exampleCountry = function () { // Format options const format = (item) => { if (!item.id) { return item.text; } var url = hostUrl + 'media/' + item.element.getAttribute('data-kt-select2-country'); var img = $("", { class: "rounded-circle me-2", width: 26, src: url }); var span = $("", { text: " " + item.text }); span.prepend(img); return span; } // Init Select2 --- more info: https://select2.org/ $('#kt_docs_select2_country').select2({ templateResult: function (item) { return format(item); } }); } const exampleUsers = function () { // Format options const format = (item) => { if (!item.id) { return item.text; } var url = hostUrl + 'media/' + item.element.getAttribute('data-kt-select2-user'); var img = $("", { class: "rounded-circle me-2", width: 26, src: url }); var span = $("", { text: " " + item.text }); span.prepend(img); return span; } // Init Select2 --- more info: https://select2.org/ $('#kt_docs_select2_users').select2({ templateResult: function (item) { return format(item); } }); } return { // Public Functions init: function () { exampleCountry(); exampleUsers(); } }; }(); // On document ready KTUtil.onDOMContentLoaded(function () { KTFormsSelect2Demo.init(); });