Footable和Knockout绑定

时间:2014-02-12 16:30:41

标签: knockout.js footable

我有一个使用Knockout.js绑定的表ForEach.i已经使用footable来提供响应度和平板电脑和移动设备的更多兼容性。

<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>

在大屏幕上我没有问题,但是当我重新调整页面大小时,展开图标并不起作用我有这样的错误:&#34;未捕获TypeError:无法读取属性&#39 ;名称&#39; of null&#34; 我发现了一些here但我无法解决我的问题。

0 个答案:

没有答案