0
私はoverflow-xが 'auto'に設定された 'table-responsive'クラスのdivを持っています。Typeahead 3内div overflow-x
このdivの内部には先読みのある入力テキストがあります。私が結果を前向きに返すことを発見したとき、divの中にいます。どうすれば終了できますか?
ここに私のコード:ここで
<div class="table-responsive">
<fieldset>
<legend>Righe</legend>
<table id="dettaglioDocumento" class="table table-condensed table-fixed" cellspacing="0" width="100%">
<col width="50px">
<col width="350px">
<thead>
<tr>
<td></td>
<td><label class="align-table">Descrizione</label></td>
</tr>
</thead>
<tbody>
<tr>
<td><img src="<?= $root; ?>/assets/img/details_close.png" class="link removeRow"></td>
<td>
<input name="txtDescrizione[]" data-target=".container-fluid" class="form-control selectDescrizione" data-provide="typeahead" autocomplete="off" name="txtDescrizione_0" type="text" placeholder="" value="">
</td>
</tr>
</tbody>
</table>
</fieldset>
</div>
JSコード:
$('.selectDescrizione').typeahead({
minLength: 3,
items: 5,
delay: 400,
source: function (query, response) {
$.ajax({
url: '<?= $root; ?>/get_listino',
dataType: "json",
type: 'POST',
data: {
query: query
},
success: function (data) {
return response(data.listino);
}
});
},
displayText: function (item) {
return item.testo;
}
});
UPDATE JSFiddle code
あなたは 'Z-index'を試したことがありますか? –
@ abhishek-pandeyはい、私はそれを高値に設定しようとしましたが、何もしませんでした。 – Swim89
あなたのコードを操作することができれば、コードをデバッグする方がはるかに簡単です。 –