I have a table that is bound using the Knockout.js ForEach.i have used footable for responsivity and more compatibility in tablet and mobile.
<table>
<thead>
<tr>
<th>Service Date</th>
<th data-hide="phone">Code</th>
<th data-hide="phone">Start Date</th>
<tbody data-bind="foreach: myCollection">
<tr>
<td data-bind="text:ServiceDate"></td>
<td data-bind="text:Code"></td>
In the large screen i don't have problem,but when i re-size the page expand icon doesn't work i have this error : "Uncaught TypeError: Cannot read property 'name' of null" i found something here but i couldn't solve my issue yet.