1

我正在使用 knockout.js;尝试使用 rowTemplate 将“数据绑定”到 Jquery dataTable。由于某些奇怪的原因,它返回“表中没有可用数据”,暗示数据源(用户)为空。但是,如果我删除 rowTemplate 属性,它会正常工作并按预期返回表中的数据。但我真的很想使用 RowTemplate。

对我的代码问题的礼貌回答将不胜感激。

 <table id="usersTable" data-bind="dataTable:
        {
            dataSource: Users,
            rowTemplate: 'usersRowTemplate',
            iDisplayLength: 6,                
            sPaginationType: 'bootstrap',
            columns: [
                {'name': 'Name'},
                {'name': 'Email'}
            ]
        }"> 
                <thead>
                    <tr>
                        <th>Name</th>
                        <th>Email</th>
                        <th></th>                                          
                    </tr>
                </thead> 
                <tbody  >
                </tbody> 
            </table> 

            <script id="usersRowTemplate" type="text/html">
                <td> <input type="text" id="name" data-bind="value: $root.Name" /></td>
                <td> <input type="text" id="email" data-bind="value: $root.Email" /></td>
                <td>
                    <button type="button" data-bind="click: $root.getselecteduser">Details</button>
                </td>
             </script>

提前致谢。

4

0 回答 0