(function( document, $ ) { function init_ajax_search() { $('.cmb-ajax-search:not([data-ajax-search="true"])').each(function () { $(this).attr('data-ajax-search', true); var field_id = $(this).attr('id').replace( new RegExp('_input$'), '' ).replace(/[\[\]']+/g, '_'); // Field id, the true one field var object_type = $(this).attr('data-object-type'); var query_args = $(this).attr('data-query-args'); $(this).devbridgeAutocomplete(Object.assign({ serviceUrl: cmb_ajax_search.ajaxurl, type: 'POST', triggerSelectOnValidInput: false, showNoSuggestionNotice: true, params: { action : 'cmb_ajax_search_get_results', nonce : cmb_ajax_search.nonce, // nonce field_id : field_id, // Field id for hook purposes object_type : object_type, // post, user or term query_args : query_args, // Query args passed to field }, transformResult: function( results ) { var suggestions = $.parseJSON( results ); if( $('#' + field_id + '_results li').length ) { var selected_vals = []; var d = 0; $('#' + field_id + '_results input').each(function( index, element ) { selected_vals.push( $(this).val() ); }); // Remove already picked suggestions $(suggestions).each(function( index, suggestion ) { if( $.inArray( ( suggestion.id ).toString(), selected_vals ) > -1 ) { suggestions.splice( index - d, 1 ); d++; } }); } return { suggestions: suggestions }; }, onSearchStart: function(){ $(this).next('img.cmb-ajax-search-spinner').css( 'display', 'inline-block' ); }, onSearchComplete: function(){ $(this).next('img.cmb-ajax-search-spinner').hide(); }, onSelect: function ( suggestion ) { $(this).devbridgeAutocomplete('clearCache'); var field_name = $(this).attr('name').replace( new RegExp('_input$'), '' ); var multiple = $(this).attr('data-multiple'); var limit = parseInt( $(this).attr('data-limit') ); var sortable = $(this).attr('data-sortable'); var field_name_temp = field_name.replace( /[\[\]']+/g, '_' ); if( multiple == 1 ) { // Multiple $('#' + field_name_temp + '_results' ).append( '