Last active
December 16, 2020 16:01
-
-
Save natsu90/8214903 to your computer and use it in GitHub Desktop.
append 'Add New' button on select2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// append footer at the end of dropdown list | |
$('#select-id').select2('container').append('<hr style="margin:5px"><a href="javascript:void(0)" onclick="add_new_option()"><img src="images/plus.png"/> Add New</a>'); | |
// trigger on click | |
function add_new_option() { | |
$('#select-id').select2('container').select2('close'); | |
var new_option_val, new_option_name; | |
/* | |
display form/dialog box and add to db | |
*/ | |
$('#select-id').append('<option value='+new_option_val+'>'+new_option_name+'</option>'); | |
$('#select-id').select2('val', new_option_val); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is because of the .select2('container'), try add containerCssClass option on init and select the container with the specified class