Hi guys I am trying to accomplish the following with bootstrap typehead tokenfield: 1) Return available tokenfields values onkeyup. 2) Disallow the entry of tokenfields that do not exist in the typehead list 3) Prevent duplicate tokenfields
Here is the code:
<input type="text" class="form-control" id="tokenfield-typeahead" />
var engine = new Bloodhound({
local: [
<?php
$Result=mysql_query("select groupname from group");
while($Data=mysql_fetch_array($Result))
{
echo "{value:'$Data[0]'},";
}
?>
],
datumTokenizer: function(d) {
return Bloodhound.tokenizers.whitespace(d.value);
},
queryTokenizer: Bloodhound.tokenizers.whitespace
});
engine.initialize();
$('#tokenfield-typeahead').tokenfield({
typeahead: [null, { source: engine.ttAdapter() }]
});
Can't belive It took me a month and a half just for this