在 FireFox 18 上测试我的代码。
我正在尝试在primefaces的桌子上获得圆角p:dataTable
......
为此,我使用了 jQuery 插件Corner。
我在 xhtml 的末尾添加了以下脚本部分:
<script>
$(".ui-datatable table").corner();
</script>
然而,桌角不会变圆。
表格的 xhtml 是:
<p:dataTable var="row" value="#{myBean.rows}">
<p:column headerText="">
<h:outputText value="#{row.name}" />
</p:column>
<p:column headerText="Address">
<h:outputText value="#{row.address}" />
</p:column>
<p:column headerText="10 mins">
<h:outputText value="#{row.gt10min}" />
</p:column>
<p:column headerText="20 mins">
<h:outputText value="#{row.gt20min}" />
</p:column>
<p:column headerText="30 mins">
<h:outputText value="#{row.gt30min}" />
</p:column>
</p:dataTable>
jQuery 链接到 xhtml,因为当我尝试它时效果会应用于其他元素。
我在这里想念什么?
是否可以通过我正在使用的 jQuery 插件或其他 jQuery 插件来实现此效果?