Questions tagged [bootstrap-table]

Bootstrap Table is an extended Bootstrap table with radio, checkbox, sort, pagination, and other added features.

Bootstrap Table is an extended Bootstrap table with radio, checkbox, sort, pagination, and other added features.

Links

Related Tags

983 questions
37
votes
4 answers

Fix First Column of a Bootstrap Table

I followed @koala_dev's code in this post to try to lock the first column s my table scrolls horizontally. The code unfortunately has no effect on my table. I was wondering if anyone could give me some pointers on what I have done wrong as I am new…
Vic
  • 617
  • 1
  • 8
  • 12
28
votes
8 answers

bootstrap-table hide column in mobile view

I have a checkbox column which should only be visible on desktop and not on Mobile or Tabs. There are no options available in the documentation to hide/show any columns based on the devise. Can we do this?
Nikunj Thakkar
  • 351
  • 1
  • 4
  • 8
20
votes
7 answers

Hide columns in bootstrap table at startup

I have the following table, where I use Bootstrap-table
yaylitzis
  • 5,354
  • 17
  • 62
  • 107
19
votes
5 answers

How do you add Bootstrap buttons in Bootstrap Table

How do you add Bootstrap buttons in Bootstrap Table
Joseph Daudi
  • 1,557
  • 3
  • 17
  • 33
17
votes
4 answers

Getting values of selected table rows in bootstrap using jquery

I'm using bootstrap table. In that I want to get Item ID value/values of selected table rows after clicking 'Add to cart' button present on same page. Table code:
Vilas
  • 837
  • 2
  • 15
  • 41
16
votes
2 answers

Bootstrap export options works for 5,000 rows and failed for 16,000 rows with network failure

Below is the html which has 5,000 records. The export is working perfectly fine. However when the records are increased to 16,000 it says network failure for all exports. In console no error is found. I am not sure about the reason. Tested in…
Kathir
  • 2,733
  • 12
  • 39
  • 67
16
votes
11 answers

Bootstrap table. How to remove all borders from table?

How to remove all (especially outer ones) borders from bootstrap table? Here is a table without inner borders: HTML
ytterrr
  • 3,036
  • 6
  • 23
  • 32
15
votes
3 answers

Scrollbar on bootstrap table

I have table that renders inside a panel which is inside a modal. As the table is relatively large, I'd like to restrict it's rows to say 5 so that the modal does not become scrollable. I looked through SO and google and everywhere I see that I need…
blueren
  • 2,730
  • 4
  • 30
  • 47
11
votes
5 answers

Bootstrap Table: sort by date field

I am using this Bootstrap table plugin. But sorting by date is not working properly. Here is the code:
netdev
  • 496
  • 1
  • 5
  • 22
veeru
  • 111
  • 1
  • 1
  • 3
10
votes
6 answers

bootstrap table columns too wide, when I set no-wrap

I am trying to make a table behave "properly" (and by properly I mean) use the width percentages I have given don't wrap, instead use ellipsis any overflow Bootstrap says I may have width that I specify as max-width percentages inline in the th…
Mr Heelis
  • 2,370
  • 4
  • 24
  • 34
10
votes
2 answers

Bootstrap-table filter-control extension populating select with complete list of options

I am using bootstrap-table for working with data from my database. I use the pagination features and only send back the number of rows requested by the user using the limit and offset options. I am also using the table-control extension to allow…
Daniel M
  • 101
  • 1
  • 1
  • 4
9
votes
1 answer

How to load JSON data into Bootstrap table?

There is way using javascript (http://jsfiddle.net/8svjf80g/1/) to load JSON data into Bootstrap table but same example is not working with me. Here is the code - var $table = $('#table'); var mydata = [ { "id": 0, …
Anurag Daware
  • 441
  • 1
  • 5
  • 15
9
votes
4 answers

How bootstrap-table to use search and filter?

I'am using bootstrap to draw a table, and I need both search and filter function. But the search function can not work after I add filter function. when I delete the row "", the search function work, but filter function disappear, how the use both…
Spirit
  • 603
  • 2
  • 8
  • 16
8
votes
6 answers

bootstrap table with clickable row event and how to exclude a column or cell

I have this function for row click: $("#table").on("click-row.bs.table", function (row, $el, field) { if (column != 4) { } }); and what condition I could add which would exclude a specific column or cells in the column? I can't find under row,…
soonic
  • 595
  • 1
  • 7
  • 22
1
2 3
65 66