我现在已经使用 kendo-ui 角度组件玩了一段时间了,我创建了这个 plunker:
http://plnkr.co/edit/zrr3nlxQl7uxbdtH4oEA?p=preview
为了设置详细信息行的宽度,我实现了 css:
.detailRow{
display: inline-block;
word-wrap: break-word;
word-break: break-all;
max-width: 100px;
white-space: normal;
}
和html:
<template kendoDetailTemplate let-dataItem>
<section *ngIf="dataItem.Category">
<article ><div class='detailRow'>{{dataItem.Category?.Description}}</div></article>
</section>
</template>
这是控制细节行宽度的方法吗?
是否可以在详细信息行中呈现 html(显示粗体和斜体)?
是否可以在加载时自动扩展每一行?