Fixed Columns extension of bootstrap-table
npm install bootstrap-table-fixed-columns-proFixed Columns extension of bootstrap-table
the original 'bootstrap-table-fixed-columns' project only support fixed table columns from left to right, this project support fixed table columns from right to left.
* type: Boolean
* description: set true to enable fixed columns.
* default: false
* type: Number
* description: the number of fixed columns.
* default: 1
leftright, leftThe MIT License.
if you wnat the table will fixed columns from right to left, you can use just like this
$('#demoTable').bootstrapTable({
fixedColumns: true,
fixedFrom: 'right',
fixedNumber: 3
});