@@include('./layouts/head.html') @@include('./layouts/head-bottom-link.html') @@include('./layouts/main.html')
Bootstrap Tags Input
Add class of .form-control with <input> tag
Just add data-role="tagsinput" to your input field to automatically change it to a tags input field.
Use a <select multiple /> as your input element for a tags input, to gain true multi value support. Instead of a comma separated string, the values will be set in an array. Existing <option />elements will automatically be set as tags. This makes it also possible to create tags containing a comma.
Typeahead is not included in Bootstrap 3, so you'll have to include your own typeahead library. I'd recommed typeahead.js. An example of using this is shown below.
You can set a fixed css class for your tags, or determine dynamically by providing a custom function.
Instead of just adding strings as tags, bind objects to your tags. This makes it possible to set id values in your input field's value, instead of just the tag's text.
@@include('./layouts/footer.html') @@include('./layouts/footer-bottom-link.html')