In my application I have a
with attributes lazy=\"true\" paginatorTemplate=\"...{RowsPerPageDropdown}...\" rowsPerPageTemplate=\"10,50
My approach is change to ALL in clientside by using jquery or javascript.
I have one form(id="form"
) and one datatable(id="cars"
) inside(you try the link ALL first):
<script type="text/javascript">
$(document).ready(function() {
$('#form\\:cars .ui-paginator-rpp-options.ui-widget.ui-state-default.ui-corner-left')
.each(function() {
$(this).children().last().html('ALL');
});
})
</script>