我目前正在为Angular使用Angular 4和Kendo UI开发一个项目。 我们有多个kendo网格应该使用相同的配置。(工具栏,分页,页脚模板......)
我决定使用我们网格的默认配置创建一个组件,因此我们没有相同的代码。
所有网格之间的主要区别在于列定义。所以我的想法是将它们作为内容传递给我的包装器组件,并在我的kendo网格中添加ng-content。
所以我现在拥有的:
main.component.ts
@Component({
template: "<grid-wrapper>
<kendo-grid-column field="projectName">
<ng-template kendoGridHeaderTemplate>
<span>Project Name</span>
</ng-template>
</kendo-grid-column>
</grid-wrapper>"
})
export class MainComponent {
}
wrapper.component.ts
@Component({
template: "<div>
<!-- Some code for buttons shown above the grid -->
<kendo-grid [data]="data"
[pageSize]="pageSize"
[sortable]="{mode: 'single'}"
<ng-content></ng-content>
<!-- templates and components for paging, toolbar, ... -->
</kendo-grid>
</div>",
selector: "grid-wrapper"
})
export class WrapperComponent {
private data: GridDataResult;
private pageSize: number = 10;
// ...
// Some code for filling the data
// ...
}
在调试kendo网格时,我注意到GridComponent获取了@ContentChildren的列,但是这个集合是空的。
有人知道出了什么问题吗?或者有关如何做得更好的任何建议?
祝你好运, BillieTK。
答案 0 :(得分:0)
得到了答案:
kendo component encapsulation template/component use
看看那里显示的那个。 为我工作!! GridComponent使用ContentChildren来选择已定义的列,这不适用于转换。一个可能的解决方法 - plnkr.co/edit/w6EgmZL5z8J6CvpjMl2h?p=preview - rusev 1月5日8:51