Sto cercando di trovare un esempio funzionante di dell'elemento typeahead twitter bootstrap che farà una chiamata Ajax per popolare il suo menu a discesa.
Ho un esempio di completamento automatico jquery funzionante che definisce l'URL Ajax e come elaborare la risposta
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
var options = { minChars:3, max:20 };
$("#runnerquery").autocomplete('./index/runnerfilter/format/html',options).result(
function(event, data, formatted)
{
window.location = "./runner/index/id/"+data[1];
}
);
..
Cosa devo modificare per convertirlo nell'esempio typeahead?
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
var options = { source:'/index/runnerfilter/format/html', items:5 };
$("#runnerquery").typeahead(options).result(
function(event, data, formatted)
{
window.location = "./runner/index/id/"+data[1];
}
);
..
Aspetterò che il problema " Aggiungi supporto fonti remote per typeahead " sia risolto.