Bootstrap-Table: How to hide a column without deleting it from the DOM?

后端 未结 4 1875
北恋
北恋 2021-01-21 09:49

I\'m having problems with the Bootstrap-Table plugin: https://github.com/wenzhixin/bootstrap-table

I have a hidden ID column in the table I need to hide. But I can\'t do

4条回答
  •  伪装坚强ぢ
    2021-01-21 10:10

    Best option would be

    to change the data field to add the class

    Stars
    

    and of course css for the hidden class

    .hidden{
      display:none;
      visibility:hidden;
    }
    

    https://jsfiddle.net/yhtgfawj/7/

提交回复
热议问题