将css-class添加到primefaces datatable -element <table> </table>

时间:2014-08-07 06:33:07

标签: jquery html css jsf primefaces

我试图将Bootstrap 3和Primefaces结合起来4.我试图添加

 styleClass="table table-striped table-bordered table-condensed"

到PrimeFaces。这些类没有添加到html table-element中,因此它没有得到&#34; Bootstrapped&#34;。他们被添加到一个surronding div。

table element has no class attribute

我已尝试使用Primefaces Bootstrap主题,但响应速度不是很快。

如果有人能为我提供一个简单的方法让这些课程成为元素,我会很高兴...你能吗?

2 个答案:

答案 0 :(得分:3)

正如您所见,Primefaces根据自己的规则生成组件。所以它可以有自己的外部和内部元素。

尝试使用tableStyleClass="..."

答案 1 :(得分:0)

实际上,答案比我想象的要简单......只是使用了这个jquery-snippet:

 $('#aTable table').addClass("table table-striped table-bordered table-condensed");

导致

enter image description here