リストビューに日付フィールドがあるテンプレートをレンダリングする剣道リストビューがあります。私が直面している問題は、日付フィールドであるテンプレートの出力をフォーマットすることです。私のテンプレートは次のようなものです:
<script type="text/x-kendo-tmpl" id="template">
#if(from_tx === '@User.Identity.Name')
{
#
<div class="chatmsg" >
<p style="word-wrap:break-word;">${msg_tx}</p>
<span class="timestamp">Sent: ${msg_dt}</span>
<span class="timestamp">Seen: ${seen_dt}</span>
</div>
#
}
else{
#
<div class="chatmsg sent">
<p style="word-wrap:break-word;">${msg_tx}</p>
<span class="timestamp">Recieved ${msg_dt}</span>
</div>
#
}#
</script>
私はこれを試しました
#
<div class="chatmsg" >
<p style="word-wrap:break-word;"> "#= kendo.toString(${msg_dt}, 'MM/dd/yyyy') #"</p>
<span class="timestamp">Sent: ${msg_dt}</span>
<span class="timestamp">Seen: ${seen_dt}</span>
</div>
#
しかし、このコードは私にテンプレートエラーを与えます..
誰でもこの問題で私を助けてくれますか