gpt4 book ai didi

html - 如何为 ngx-datatable 列标题实现工具提示

转载 作者:行者123 更新时间:2023-12-04 10:38:29 27 4
gpt4 key购买 nike

我试图在我的 ngx-datatable-column 标题上显示简单的工具提示。重要的是我仍然可以使用排序功能。

不知何故,“标题”不起作用。

<ngx-datatable-column title="my Tooltip" [resizeable]="false" [width]="50" name="Name" prop="key" headerClass="text-left">

我可以在哪里集成标题标签?

    <ngx-datatable #table [rows]="rows" [reorderable]="false" columnMode="force" class="bootstrap table-bordered table-hover" [summaryRow]="true" [summaryPosition]="'bottom'" [loadingIndicator]="showLoadingIndicator" headerHeight="auto" rowHeight="auto" footerHeight="auto" summaryHeight="auto">
<ngx-datatable-column [resizeable]="false" [width]="50" name="Name" prop="key" headerClass="text-left">
<ng-template let-value="value" ngx-datatable-cell-template>
<a href="link" target="_blank" class="text-left">
{{value}}
</a>
</ng-template>
</ngx-datatable-column>
</ngx-datatable>

最佳答案

您可以使用 ng-template为标题设置标题和工具提示:

<ngx-datatable-column name="Part" headerClass="header" [title]="Hello" 
[summaryFunc]="emptySumm">
<ng-template ngx-datatable-header-template let-column="column">
<span title="the tooltip">I am a tooltip</span>
</ng-template>
</ngx-datatable-column>

The complete example can be seen at stackblitz.

关于html - 如何为 ngx-datatable 列标题实现工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60039986/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com