--- title: Selections taxonomy: category: docs process: twig: true never_cache_twig: true --- When a selection is made by the user, Select2 will convert the selected `` elements will be converted into data objects using the following rules: ``` { "text": "label attribute", "children": [ option data object, ... ], "element": HTMLOptGroupElement } ``` By default, Select2 will then display the `text` property of the selected result. ## Templating The appearance of selected results can be customized by using the `templateSelection` configuration option. This takes a callback that transforms the selection data object into a string representation or jQuery object:




If your selection template contains HTML, you must wrap your rendered result in a jQuery object. Otherwise, Select2 will assume that your template only returns text and will escape it.  You may find it helpful to use a client-side templating engine like [Handlebars](http://handlebarsjs.com/) to define your templates.

## Limiting the number of selections

Select2 multi-value select boxes can set restrictions regarding the maximum number of options that can be selected. The select below is declared with the `multiple` attribute with `maximumSelectionLength` in the select2 options.





## Clearable selections

You can allow users to clear their current selections with the `allowClear` option when initializing Select2. Setting this option to `true` will enable an "x" icon that will reset the selection to the placeholder.

```
$('select').select2({
  placeholder: 'This is my placeholder',
  allowClear: true
});
```