Kendo UI网格列条件模板

时间:2018-08-03 15:29:06

标签: vue.js kendo-grid

我试图在kendo ui网格上渲染个人资料图片,将其与vue集成在一起,我可以显示该图片,但是由于并非所有用户都拥有,我无法读取null属性,

<kendo-grid-column field="profile.image" title="Profile Picture" template="<img src='#=profile.image#' alt='image' />" :filterable=false></kendo-grid-column>

我尝试了以下修复方法,但出现了剑道sintaxys错误:

<kendo-grid-column field="profile.image" title="Profile Picture"
                   template="#= if (profile.image.uri != null)  {# <img src='#=profile.image#' alt='image' /> #} 
                   else {#profile.name#} #"
                   :filterable=false></kendo-grid-column>

0 个答案:

没有答案