我需要为嵌套的子行添加cssClass。 我可以为父行添加类,但如何添加嵌套的子行。
explain analyze select * from eods where dt='2010-02-22';
QUERY PLAN
----------------------------------------------------------------------------------------------------------------------------------
Index Scan using eods_dt_idx on eods (cost=0.56..25886.45 rows=7556 width=36) (actual time=40.047..56963.769 rows=8143 loops=1)
Index Cond: (dt = '2010-02-22'::date)
Planning Time: 67.876 ms
Execution Time: 56970.499 ms
(4 rows)
答案 0 :(得分:0)
您需要为FlexGrid的formatItem事件添加一个事件处理程序,然后遍历所有行并设置其cssClass属性。
JS:
grid.formatItem.addHandler((s, e) => {
s.rows.forEach(r => {
r.cssClass = 'custom-back';
})
});
CSS:
.custom-back {
background: rgb(18, 148, 148) !important;
}