1
我一直在玩了一段時間,劍道的UI角度分量 和我創造了這個plunker:劍道的UI angular2 detailrow寬度,html和自動擴展
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>
這是控制細節寬度的方法嗎?
是否有可能在detailrow中顯示html(顯示粗體和斜體)?
是否有可能在加載時自動展開每一行?
謝謝Alex。也用於將其添加到存儲庫。 –