/* ==========================================================
 * AdminPlus v3.0
 * form_elements.js
 * 
 * http://www.mosaicpro.biz
 * Copyright MosaicPro
 *
 * Built exclusively for sale @Envato Marketplaces
 * ========================================================== */ 

$(function()
{
	/* Select2 - Advanced Select Controls */
	
	// Basic
    $('.select2_1').select2();
	
	// Multiple
	$('.select2_2').select2();
	
	// Placeholders
	$(".select2_3").select2({
		//placeholder: "Select a State",
		allowClear: true
	});
	$(".select2_4").select2({
	    //placeholder: "Select a State",
	    allowClear: true
	});
	
	// tagging support
	$(".select2_5").select2({tags:["red", "green", "blue"]});
	
	// enable/disable mode
	$(".select2_6_1").select2();
	$(".select2_6_2").select2();
	$(".select2_6_enable").click(function() { $(".select2_6_1,.select2_6_2").select2("enable"); });
	$(".select2_6_disable").click(function() { $(".select2_6_1,.select2_6_2").select2("disable"); });
	
	// templating
	function format(state) {
	    if (!state.id) return state.text; // optgroup
	    return "<img class='flag' src='http://ivaynberg.github.com/select2/images/flags/" + state.id.toLowerCase() + ".png'/>" + state.text;
	}
	$(".select2_7").select2({
	    formatResult: format,
	    formatSelection: format,
	    escapeMarkup: function(m) { return m; }
	});
});