Help with jQuery ajax event on Group Fields
-
Hi,
Firsly i’ve been successfully integrate jQuery Select2 for any select at cmb-box with custom element for FontAwesome icon selectable.
My Select2 function:
function formatIcon(icon) { if (icon.hasOwnProperty('id')) return '<span><i class="' + icon.id + '"></i> ' + icon.text + '</span>'; else return icon.text; } function loadSelectIcon() { var $metabox = $( '.cmb2-wrap > .cmb2-metabox' ), $selecfa = $metabox.find( 'select[id^=_repeat_items]' ); $selecfa.each(function () { $(this).select2({ width : '200px', formatResult: formatIcon, formatSelection: formatIcon, escapeMarkup: function (m) { return m; } }); }); }
On repeatable group first item it worked, but when i add/remove select doesn’t work when clicked. How i can load my function for jquery Select2 on group fields without reload page?
I know some trigger from cmb2.js like ‘cmb2_add_row’, ‘cmb2_remove_row’ but i dont know how to load it on other js file.
Thank you for advance ^^
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Help with jQuery ajax event on Group Fields’ is closed to new replies.