This component will display a list of selected values, introduced using an autocompleter. It requires scripty2 to work:
<input type="text" id="txt" name="txt" />
<script>
var ma = new S2.UI.MultiAutocompleter($('txt'), {
allowNewChoices: true,
choices: [ 'java', 'ruby', 'cobol', 'perl', 'scala', 'php', 'ada' ]
});
</script>
Snapshot:
