我开发了一个具有 TurboTable 的屏幕,其中一列是复选框。我按照文档中的说明进行了 TurboTable 配置,但是所有复选框在加载数据时都返回标记或最初不出现,但是如果您单击该行,则会显示该复选框。有人指示我在从后端加载数据时根据加载的数据加载复选框是否带有标记的值。以下是一些事实:
html
<p-table [value]="dias" [responsive]="true">
<ng-template pTemplate="header" let-columns>
<tr>
<th class="col-codigo" scope="col">Aberto?</th>
<th class="col-codigo" scope="col">Código</th>
<th scope="col">Dia Semana</th>
<th scope="col">Hora Abertura</th>
<th scope="col">Hora Fechamento</th>
</tr>
</ng-template>
<!-- ## TODO: TEST
<p-cellEditor>
<ng-template pTemplate="input">
<p-checkbox [(ngModel)]="dia.opt_Funcionamento"
[binary]="true" name="funcionamento" (onclick)="!dia.opt_Funcionamento"
[value]="dia.opt_Funcionamento"></p-checkbox>
</ng-template>
<ng-template pTemplate="output">
<p-checkbox [binary]="true" [value]="dia.opt_Funcionamento" [(ngModel)]="dia.opt_Funcionamento"
name="funcionamentoDia"></p-checkbox>
</ng-template>
</p-cellEditor>
-->
<ng-template pTemplate="body" let-dia>
<tr>
<td>
<p-checkbox [(ngModel)]="dia.opt_Funcionamento" [value]="dia.opt_Funcionamento"
binary="false" name="funcionamento" (onclick)="!dia.opt_Funcionamento"></p-checkbox>
</td>
<td scope="row">
{{dia.cd_Funcionamento}}
</td>
<td scope="row">
{{dia.dia}}
</td>
<td pEditableColumn scope="row">
<p-cellEditor>
<ng-template pTemplate="input">
<p-calendar [(ngModel)]="dia.hr_Abertura" [timeOnly]="true" name="horaAbertura" [showSeconds]="true" dataType="string"></p-calendar>
</ng-template>
<ng-template pTemplate="output">
{{dia.hr_Abertura}}
</ng-template>
</p-cellEditor>
</td>
<td pEditableColumn scope="row">
<p-cellEditor>
<ng-template pTemplate="input">
<p-calendar [(ngModel)]="dia.hr_Fechamento" [timeOnly]="true" name="horaFechamento" [showSeconds]="true" dataType="string"></p-calendar>
</ng-template>
<ng-template pTemplate="output">
{{dia.hr_Fechamento}}
</ng-template>
</p-cellEditor>
</td>
</tr>
</ng-template>
</p-table>
组件.ts
export class FuncionamentoEstabelecimentoCadastroComponent {
@Input () displayValue: string;
funcionamentoEstabelecimento = new FuncionamentoEstabelecimento();
dias: FuncionamentoEstabelecimento[];
aberto = false; //TEST
diaSelecionado: FuncionamentoEstabelecimento; //TEST
constructor(
...
) { }
ngOnInit() {
this.tituloPagina.setTitle('Dias de funcionamento do estabelecimento');
const codigoFuncionamento = this.rota.snapshot.params['codigo'];
this.carregaDiasFuncionamento();
}
carregaDiasFuncionamento() {
this.funcionamentoService.carregaDiasFuncionamento()
.then(funcionamentoDados => {
this.dias = funcionamentoDados;
})
.catch(erro => this.errorHandler.handle(erro));
}
模型
export class FuncionamentoEstabelecimento {
cd_Funcionamento: number;
dia: string;
opt_Funcionamento = false;
hr_Abertura: Time;
hr_Fechamento: Time;
}
编辑:
我能够解决这个问题。我使用“跨度”作为解决方案。跟随:
<td style="text-align: center" scope="row">
<span *ngIf="rowData.opt_Funcionamento">
<p-selectButton [options]="aberto" [(ngModel)]="rowData.opt_Funcionamento"
(onOptionClick)="!rowData.opt_Funcionamento" name="diaAberto"
pTooltip="Aberto" tooltipPosition="top"></p-selectButton>
</span>
<span *ngIf="!rowData.opt_Funcionamento">
<p-selectButton [options]="aberto" [(ngModel)]="rowData.opt_Funcionamento"
(onOptionClick)="rowData.opt_Funcionamento" name="diaFechado"
pTooltip="Fechado" tooltipPosition="top"></p-selectButton>
</span> </td>