当用户将鼠标悬停在行上时,我想更改行的背景(有用的帮助,行跟踪)。
我尝试使用<class>:hover
将CSS类([rowClass]
)应用于每行,这在理论上是可行的,但是样式不会得到应用。
<kendo-grid [rowClass]="rowCallback" [data]="gridData" [height]="410">
...
export class AppComponent {
public gridData: any[] = products;
rowCallback(context) {
return 'styler';
}
}
Stackblitz:https://stackblitz.com/edit/grid-hover-color-test
答案 0 :(得分:0)
最直接的方法是通过CSS定位悬停的行并添加所需的样式,例如:
encapsulation: ViewEncapsulation.None,
styles: [`
.k-grid tr:hover {
background-color: yellow;
}
`]