作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我还有一个问题!我正在尝试从 bean 配置 HtmlPanelGrid。我将 panelGrid 绑定(bind)到这个 bean 并想要设置 css 行类。这是我的 stylesheet.css:
.list-row-even {
background-color: silver;
}
.list-row-odd {
background-color: red;
}
我的 jsf 页面:
<rich:tab label="Top-List" id="screenTop">
<h:panelGrid id="topListTable" binding="#{chartBean.topListTable}" />
</rich:tab>
还有我的 bean :
public TopListChartWrapper(Iterator<Entry> treeIt) {
this.grid = new HtmlPanelGrid();
//this.grid.setBgcolor("yellow");
this.grid.setColumns(2);
this.grid.setBorder(0);
this.grid.setCellpadding("0");
this.grid.setCellspacing("0");
this.grid.setWidth("100%");
this.grid.setRowClasses("list-row-even, list-row-odd");
this.treeIterator = treeIt;
this.prepareGrid();
}
有什么想法吗?也许我需要在某个地方注册我的样式表?
谢谢!
最佳答案
抱歉 - 关于忘记问题)我弄清楚出了什么问题:我需要更换行:
link href="./css/default.css" rel="stylesheet" type="text/css"
<p>with this one:
</p>
link href="#{facesContext.externalContext.requestContextPath}/css/default.css" rel="styleSheet" type="text/css"/
谢谢!
关于css - HtmlPanelGrid.setRowClasses() 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2810847/
我还有一个问题!我正在尝试从 bean 配置 HtmlPanelGrid。我将 panelGrid 绑定(bind)到这个 bean 并想要设置 css 行类。这是我的 stylesheet.css:
我是一名优秀的程序员,十分优秀!