如何在Ext Js 4.0中禁用默认的网格行悬停颜色变化

How to disable to default hover color change on the rows of grids in Ext Js 4.0?

本文关键字:网格 默认 悬停 变化 颜色 Ext Js      更新时间:2023-09-26

我想禁用Ext Js 4.0中发生在网格行的默认悬停颜色(灰色)变化。我该怎么做?

要删除悬停颜色,需要在viewConfig中进行更改。

viewConfig : {
    trackOver : false
}

这将使鼠标悬停在网格上

文档: