其中包含tr的表。现在,我想如果您单击该表行,则背景颜色会更改。为什么要这样做是因为我正在使用树形表打开此表行。如果您单击此表行,我希望整个行的背景颜色都发生变化。现在,如果我关闭此表行(再次单击它),我希望backgroundcolor恢复为正常
<ng-template pTemplate="header">
<tr>
<th>Bedrijsnaam</th>
<th>Bedrijfstype</th>
<th>Status</th>
<th>Bank</th>
</tr>
</ng-template>
这是我正在谈论的tr。我尝试使用ng-class
,但没有任何运气。有人知道该怎么做吗?
答案 0 :(得分:0)
您可以在(click)
上使用[ngClass]
和tr
。
Ex:
<tr (click)="toggleClass()" [ngClass]="{active: className}">
....
</tr>
let className =“”;
toggleClass(){
if(this.className === "active"){
this.className = ""
}else{
this.className = "active";
}
}
.active{
background-color: yellow;
}
请注意,此实现是针对一个tr的,您可能需要为每行附加此
className
。
答案 1 :(得分:0)
答案 2 :(得分:0)
Table.component.ts
class foo: ObservableObject
{
private int _x;
public int x
{
get
{
return _x;
}
set
{
_x = value;
OnPropertyChanged("x");
}
}
class bar : ObservableObject
{
private foo _y;
public foo y
{
get
{
return _y;
}
set
{
if (_y!=null)
{
_y.PropertyChanged -= _y_PropertyChanged;
}
_y = value;
_y.PropertyChanged += _y_PropertyChanged;
OnPropertyChanged("y");
OnPropertyChanged("pow");
}
}
private void _y_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
//if(e.PropertyName == "x");
//{
OnPropertyChanged("pow");
OnPropertyChanged("y");
//}
}
public int pow { get { return _y.x * 2;} }
}
var newNode = orgChart.insertNode(parentID, data);
var newNodeId = newNode.id;
orgChart.config.customize[newNodeId] = {color: "red"}
orgChart.loadFromJSON(orgChart.nodes, true);
来管理是否单击了表行。 Table.component.html
import { Component } from '@angular/core';
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent {
tableRowClicked = false;
toggleTableRowClicked() {
this.tableRowClicked = !this.tableRowClicked;
}
}
tableRowClicked
上的点击处理程序调用切换功能<div>
<table>
<tr (click)="toggleTableRowClicked()" [class.table__row--clicked]="tableRowClicked">
<th>Bedrijsnaam</th>
<th>Bedrijfstype</th>
<th>Status</th>
<th>Bank</th>
</tr>
</table>
</div>
时应用<tr>
类Table.component.css
table__row--clicked
tableRowClicked=true
时制作.table {
&__row {
&--clicked {
background-color: red;
}
}
}
的CSS