// Bootstrap Table - fixed-columns check.bs.table bug

Exploration for https://github.com/wenzhixin/bootstrap-table/issues/2001 to try and fix why `check.bs.table` not triggered if using fixed-columns extension

HTML

<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table-fixed-columns/master/bootstrap-table-fixed-columns.css">
<table id = "table"
       data-toggle="table"
       data-url="/gh/get/response.json/wenzhixin/bootstrap-table/tree/master/docs/data/data1/"
       data-fixed-columns="true"
       >
    <thead>
    <tr>
        <th data-radio="true">Name</th>
        <th data-field="stargazers_count">Stars</th>
        <th data-field="forks_count">Forks</th>
        <th data-field="description">Description</th>
    </tr>
    </thead>
</table>

JavaScript

// Bootstrap Table - fixed-columns check.bs.table bug
 // Exploration for https://github.com/wenzhixin/bootstrap-table/issues/2001 to try and fix why `check.bs.table` not triggered if using fixed-columns extension
 
 
 $(document).ready(function(){
    
    
    setTimeout(function () {
    	$(".fixed-table-container").children().find("[name='btSelectItem']").click(function () {  alert('abc');  
        
    		});
      }, 1000);
});