Как добавить новое настраиваемое поле рядом с существующим полем поиска («PESQUISAR»)? Я видел много примеров добавления нового настраиваемого поля ниже tr th
, но мне бы хотелось, чтобы оно было в том же направлении. Поле "Pesquisar"
Обновление
<table id="table1" data-toggle="table" data-pagination=true data-sortable="true" data-search=true data-locale="pt-BR">
<thead>
<tr>
<th data-sortable="true">ID</th>
<th data-sortable="true">NOME</th>
<th data-sortable="true">SERVICO</th>
<th data-sortable="true">CIDADE</th>
<th data-sortable="true">BAIRRO</th>
<th data-sortable="true">RUA</th>
</tr>
</thead>
<tbody>
//Content
</tbody>
</table>
<script type="text/javascript">
$(document).ready(function(){
$('#table1').bootstrapTable({
locale: 'pt-BR'
});
});
</script>