I have been playing now for some time with the kendo-ui angular components and I have created this plunker:
http://plnkr.co/edit/zrr3nlxQl7uxbdtH4oEA?p=preview
For setting the width of the detail row I have implemented css:
.detailRow{
display: inline-block;
word-wrap: break-word;
word-break: break-all;
max-width: 100px;
white-space: normal;
}
And the html:
<template kendoDetailTemplate let-dataItem>
<section *ngIf="dataItem.Category">
<article ><div class='detailRow'>{{dataItem.Category?.Description}}</div></article>
</section>
</template>
Is this the way to control the detailrow width?
Is it possible to render html in the detailrow (show bold and italic)?
Is it possible to auto-expand every single row on loading?