help please bootstrap-table-filter-control probleme select double entry?
See original GitHub issueThe number of entries in the double select each time I select an entry !
$(document).ready(function(e) {
$('#Table_List_Produit').bootstrapTable({
method: 'get',
cache: false,
url: '../include/server-response_produit.php',
striped: true,
pageSize: 10,
pageList: [10, 25, 50, 100, 200],
filterControl: true,
singleSelect: true
});
});
<table id="Table_List_Produit"
data-height="800"
data-mobile-responsive="true"
data-side-pagination="server"
data-show-export="true"
data-show-toggle="true"
data-pagination="true"
data-search="true">
<thead>
<tr>
<th data-field="name">Name</th>
<th data-field="description" data-filter-control="select" data-visible="true">Description</th>
</tr>
</thead>
Images screen : https://i.stack.imgur.com/WCAlo.png https://i.stack.imgur.com/IoL5O.png
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:6
Top Results From Across the Web
bootstrap table: filter control not working - Stack Overflow
I have tried run the input that you provided in https://live.bootstrap-table.com/ and the filter controls works only after removing the ...
Read more >Table | Components - BootstrapVue
Table. For displaying tabular data, <b-table> supports pagination, filtering, sorting, custom rendering, various style options, events, and asynchronous ...
Read more >Table Filter Control - Bootstrap Table
Table Filter Control extension of Bootstrap Table. ... type: Boolean. Detail: Set to true to add an input or select into the column....
Read more >Forms · Bootstrap v4.6
Examples and usage guidelines for form control styles, layout options, and custom components for creating a wide variety of forms.
Read more >Knit table multiple header - - Convittiadi Campobasso
While the Data table control is selected, in the right pane, ... Pivot Table 'Value Filter' For Multiple Fields, I need to filter...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This sounds like the same issue that has already been reported and confirmed here
https://github.com/wenzhixin/bootstrap-table/issues/2896
It’s an issue with data-filter-control and data-height.
thanks @dmiszkur !