2017-06-19 6 views
0

私はmultiselectionのためにtokenize2ライブラリを使用しています。それは私のためにうまく動作しますが、私はドロップダウンのすべての項目をクリックして表示したいと思います。 tokenize2で可能ですか? 私を助けてください。tokenize2のすべてのオプションを表示

答えて

1

tokenize2.cssファイルで次のスタイルを変更します。わたしにはできる。次

if($('li.dropdown-item', this.dropdown).length <= this.options.dropdownMaxItems){ 

if ($('li.dropdown-item', this.dropdown).length <= items.length) { 
ファイルtokenize2.jsに

.tokenize-dropdown > .dropdown-menu { 
min-height: 10px; 
width: 100%; 
display: block; 
margin: -1px 0 0 0; 
visibility: visible; 
opacity: 1; 
max-height: 200px !important; 
overflow: auto; } 

と変更

関連する問題