Skip to content

Instantly share code, notes, and snippets.

@MaximilianoRicoTabo
Last active April 5, 2024 14:09
Show Gist options
  • Save MaximilianoRicoTabo/8c75855c5d1073c8b0170326cf896e04 to your computer and use it in GitHub Desktop.
Save MaximilianoRicoTabo/8c75855c5d1073c8b0170326cf896e04 to your computer and use it in GitHub Desktop.
Customize select2 labels
$( '#pmprogroupacct_child_level_ids' ).select2({
templateSelection: function( option ) {
// Customize the display label of each selected option
if ( option.text === 'Option 1' ) {
return 'Custom Label 1';
} else if ( option.text === 'Option 2' ) {
return 'Custom Label 2';
} else if ( option.text === 'Option 3' ) {
return 'Custom Label 3';
} else {
return option.text;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment