在Primefaces paginator中,在rowsPerPageTemplate中如何显示View All,它将加载页面中的所有数据。 以下链接有一个解决方案,但它只适用于页面加载。 当某个操作发生并更新数据表内容时,不再显示“查看全部”。 Customize attribute rowsPerPageTemplate of <p:dataTAble>
任何建议都会很棒。
答案 0 :(得分:0)
只需在更新表格后再次发布的链接中应用javascript即可。例如。通过oncomplete="addViewAll()"
属性
function addViewAll() {
$('#form\\:cars .ui-paginator-rpp-options.ui-widget.ui-state-default.ui-corner-left')
.each(function() {
$(this).children().last().html('ALL');
});
}