我创建了这个小提琴示例http://jsfiddle.net/adi85/mBpJB/8/
我无法将数据绑定到工具提示,并且我正在尝试使用由于模板绑定而无法工作的模态对话框。
<table class="tbl" id="dash" >
<thead><tr>
<th>Title</th>
</tr></thead>
<tbody data-bind="foreach: course">
<tr>
<td><a href="#" id="qtipselector_01" data-bind="text: title, loadqtip: true"></a></td>
<div id="TooltipContent_01" class="hidden"><!--for each tr there will be a tool tip-->
<!-- in the below a tag the bidning is not working and also the dialog box is not working for me -->
<a data-bind="text: title" data-reveal-id="dialog" data-animation="fade"> Enroll </a>
</div>
</tr>
</tbody>
</table>