Hy! I'm using twitter bootstraps typeahead:
I'm calling a page that returns a response with json_encode the page returns a name and an ID,
I want that the typeahead list will show me the list of names, and when I select one of the name to write the id value to a hidden field.
the calling works fine, and to write a field should be easy. what i dont know what to do is how to divide the name from the id.
now, when i search something, in the suggesstion list I can see the returning results like this:
name1:id1 name2:id2
i only want to see names but to carry the value of id too.
how can i do that?
$(function(){
$("#typeahead_<? print $key; ?>").typeahead(
{
source: function(query, process)
{
$.ajax({
url: '/getAjaxProducts',
type: 'POST',
data: 'query=' + query,
dataType: 'JSON',
async: true,
success: function(data)
{
process(data);
}
});
}
});
});