0

我正在使用 extjs 3.2。我刚刚参考http://skirtlesden.com/articles/styling-extjs-grid-cells尝试了一个网格行着色示例。在包含静态网格的 gridExample.js 文件中添加了网格视图配置,

    viewConfig: { 
    stripeRows: false, 
    getRowClass: function(record) { 
        return record.get('age') < 18 ? 'child-row' : 'adult-row'; 
    } 

并在 html 页面中添加了 CSS。

HTML代码是,

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>success</title>
<link href="/testing/ext/resources/css/ext-all.css" rel="stylesheet" type="text/css" />
<link href="/testing/ext/resources/css/test.css" rel="stylesheet" type="text/css" />
<style>
.child-row .x-grid-cell { 
    background-color: #ffe2e2; 
    color: #900; 
}  
.adult-row .x-grid-cell { 
    background-color: #e2ffe2; 
    color: #090; 
}
</style>
<script src="/testing/ext/adapter/ext/ext-base.js"></script>
<script src="/testing/ext/ext-all.js"></script>
<script src="/testing/JS/gridExample.js"></script>
</head>
<body>
</body>
</html>

但网格行颜色没有改变。大多数论坛都知道代码。那么,html页面中的css有问题吗?提前致谢。

4

2 回答 2

1

x-grid3-...Ext 3.x为网格元素使用表单的 CSS 类。您可以检查此 3.2 示例的标记以亲自查看。

所以,你的 CSS 应该是:

.child-row .x-grid3-cell { 
    background-color: #ffe2e2; 
    color: #900; 
}  
于 2013-07-24T22:49:30.050 回答
0

我必须添加!important到这些属性中才能获得类似于工作的东西。

.child-row .x-grid-cell { 
    background-color: #ffe2e2 !important; 
    color: #900 !important; 
} 
于 2013-07-23T11:17:58.880 回答