2015-11-06 41 views
6

看起来像CSS不能用于我的Typeahead。 我试图重现滚动下拉菜单像 https://twitter.github.io/typeahead.js/examplesTypeahead - 可滚动下拉菜单

这里是我的代码:

JS

var productList = new Bloodhound({ 
      datumTokenizer: Bloodhound.tokenizers.obj.whitespace('PART_NO'), 
      queryTokenizer: Bloodhound.tokenizers.whitespace, 
      //Maybe I need a prefetch 
      // prefetch: '../data/films/post_1960.json', 
      remote: { 
       url: 'getProducts/%QUERY', 
       wildcard: '%QUERY' 
      } 
     }); 

     $('#scrollable-dropdown-menu .typeahead').typeahead(null, { 
      name: 'PARTS', 
      limit: 10, 
      display: 'PART_NO', 
      source: productList 
     }); 

CSS

#scrollable-dropdown-menu .tt-dropdown-menu { 
      max-height: 150px; 
      overflow-y: auto; 
      background-color: red; 
     } 

我看不到的地方.tt-dropdown-menu是?

干杯,

米克

回答

11

看到这个GitHub issue。可滚动下拉示例有一个问题。

更新您的CSS来:

#scrollable-dropdown-menu .tt-menu { 
    max-height: 150px; 
    overflow-y: auto; 
    background-color: red; 
}