このフィドルの例を作成しました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>