|
Re: Hide Status on TablePage inside PageField [message #1855263 is a reply to message #1854985] |
Wed, 05 October 2022 09:54 |
|
Hi,
are there any table controls (e.g. AggregateTableControl) in your table? If yes, you need to remove them or make them invisible as well if you want to hide the table footer:
getTableField().getTable().getTableControls().forEach(control -> control.setVisibleGranted(false));
Best regards
Claudio
|
|
|
|
Re: Hide Status on TablePage inside PageField [message #1856916 is a reply to message #1856886] |
Mon, 09 January 2023 09:26 |
|
If you want to make the whole footer invisible, you need to set tableStatusVisible to false and make all table controls invisible (which is AggregateTableControl in your case). If you only want to make the right part or some elements of the right part invisible, you need to use CSS, e.g.:
.your-table > .table-footer > .table-info {
display: none;
}
|
|
|
|
Powered by
FUDForum. Page generated in 0.05658 seconds