1

リストビューに日付フィールドがあるテンプレートをレンダリングする剣道リストビューがあります。私が直面している問題は、日付フィールドであるテンプレートの出力をフォーマットすることです。私のテンプレートは次のようなものです:

<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>
#

しかし、このコードは私にテンプレートエラーを与えます..

誰でもこの問題で私を助けてくれますか

4

1 に答える 1

4

あなたのmsg_dtは日付オブジェクトではないと思いますこれを試してください

<script type="text/x-kendo-tmpl" id="template">
 <div class="chatmsg" >
    <p style="word-wrap:break-word;"> "#= kendo.toString(kendo.parseDate(msg_dt, 'yyyy-MM-dd'), 'MM/dd/yyyy') #"</p>
    <span class="timestamp">Sent: #= msg_dt #</span>
    <span class="timestamp">Seen: #= seen_dt #</span>
 </div>
</script>
于 2014-09-15T03:50:58.793 に答える