blacksheriff

Results 10 comments of blacksheriff

> 1. You can use the [`class`](https://bootstrap-table.com/docs/api/column-options/#class) column option to solve your problem: https://live.bootstrap-table.com/code/wenzhixin/1830 > 2. Not support: https://bootstrap-table.com/docs/extensions/resizable/#known-issues 1. Thanx a lot for reply. It's very difficult to make...

> 1. You can use the [`class`](https://bootstrap-table.com/docs/api/column-options/#class) column option to solve your problem: https://live.bootstrap-table.com/code/wenzhixin/1830 Unfortunatelly it doesn't help. It recalcs th and td automatically: ![image](https://user-images.githubusercontent.com/57944588/74652640-8581a880-5197-11ea-82e4-3c506e2ca805.png)

If I not mistaken, it can be simple solve with change "width" to "min-width" for bootstrap4 respect that. in line 4199 bootstrap-table.js: `style += Utils.sprintf('width: %s; ', (column.checkbox || column.radio)...

> I think we can overwrite the CSS style for this problem. > For example: > > ``` > td.bs-checkbox { > width: 36px !important; > min-width: 36px; > }...

> You can try to set table layout: https://live.bootstrap-table.com/code/wenzhixin/1861 It works with "width: auto !important" in .table class Without it, ,`` looks fine, but `` of 50 columns, trying to...

I've saved my example to show you about "table-layout: fixed; ": https://live.bootstrap-table.com/code/blacksheriff/1865

> @djhvscf i guess your more familiar with css :) My css knowledges is not critical here. Once again, I have many dynamic tables in which from 3 to 50...