I’m really thrilled, because my code works great for me (se below), however I cannot use the arrow keys to move up/down in the list of results.
In the demo this feature is not available either, however I know it’s enabled in the jQuery autocomplete, so I’m wondering if any of you have made it work for typeahead as well?
<input type="text" class="span3" style="margin: 0 auto;" data-provide="typeahead" data-items="13" data-source='[<?php
$ii=0;
while($row = mysql_fetch_array($resultatOrter)){
if($i!=0){
echo ',';
}
echo '"'.$row['ortnamn'].'"';
$i++;
} ?>]'>
This issue has been reported here.
It seems that they fixed it according to another issue and then broke it again in 2.04. This may not be the case, it’s just a guess. I tried it in Firefox and it’s broken for me as well as you said.
I would suggest finding a copy of 2.03 and see if that works. (you can probably look for an older revision on the bootstrap repository @ https://github.com/twbs/bootstrap
This mentions that they are aware and plan on fixing the issue in 2.1.0. And 2.03 should work.