JQueryテンプレートを使用してasp.netにテーブルグリッドを作成しています。しかし、レンダリングの問題が発生しています。コードは次のとおりです。
<script id="housingTemplate" type="text/x-jquery-tmpl">
<div class="oddrow togglestyle">
<div class="oddFirst">
${ID}
</div>
<div class="oddFirst thirdWidth fourthWidth info-tooltip"
title="{{ html ProjectName }}">
${ProjectName}
</div>
<div class="oddFirst thirdWidth fourthWidth info-tooltip"
title="Ravi Joshi">
${Address}
</div>
<div class="oddFirst thirdWidth info-tooltip">
${ZipCode}
</div>
<div class="oddFirst thirdWidth info-tooltip">
${City}
</div>
<div class="oddFirst thirdWidth info-tooltip">
${Type}
</div>
</div>
<script>
$("#businessTemplate").tmpl($.parseJSON(data.ResponseData)).appendTo("#dataList");
DIVの「title」タグは「#dataList」内にレンダリングされません。jqueryテンプレートはその部分をスキップして残りをすべてレンダリングします。
プラグインは「title」タグ内に記述されたテキストのみをサポートするため、TOOLTIPの目的でDIVに「title」タグが必要です。
コードに間違って書いていることがありますか?