与原始脚本成角度的数据表在哪里

时间:2018-11-15 23:04:13

标签: angular nativescript

我知道列表视图存在,但是没有列标题。

我在使用带有本机脚本的angular时找不到关于数据表的任何信息:

https://docs.nativescript.org/angular/ui/rich-components

1 个答案:

答案 0 :(得分:1)

有一个名为 tkListViewHeader 的指令 例如,如果您的列表视图项目模板(例如<ng-template tkListItemTemplate let-item="item" let-i="index">)具有5列的GridLayout视图,则可以使用Same GridLayout编写标题模板代码。

<ng-template tkListViewHeader>

                        <GridLayout width="100%" columns="3*,2.5*,1.5*,1.5*,2*" orientation="horizontal" >

                            <Label col="0" text="Customer" class="header-text" [ngStyle]="{'padding-left': 20}"></Label>
                            <Label col="1" text="Order" class="header-text-center"></Label>
                            <Label col="2" text="Qty" class="header-text-center"></Label>
                            <Label col="3" text="Load" class="header-text"></Label>
                            <Label col="4" text="Status" class="header-text-center" [ngStyle]="{'padding-left': 20}"></Label>
                        </GridLayout>

                    </ng-template>