gpt4 book ai didi

css - HtmlPanelGrid.setRowClasses() 的问题

转载 作者:行者123 更新时间:2023-11-28 14:59:27 24 4
gpt4 key购买 nike

我还有一个问题!我正在尝试从 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com