Hiding Pagination on New-UDTable

Product: PowerShell Universal
Version: 1.5.9
UDv3

Hi all,
Not sure if this is a bug but on V2 there used to be a parameter on new-udgrids to turn on or off pagination from what I remember.
On V3, now that we only use new-udtable, I’ve checked and there is a -ShowPagination switch:

 -ShowPagination [<SwitchParameter>]
        Required?                    false
        Position?                    named
        Default value                False
        Accept pipeline input?       false
        Accept wildcard characters?  false

However it doesnt seem to function, regardless of wether its supplied or not, or forced with -ShowPagination:$False
I’m still getting paging on my table.
Has anyone else come across this on the latest universal & V3 framework?

Edit:
Also saw the same behaviour with -StickyHeader, wasnt sure if I was doing something wrong but with or without it made no difference, couldnt see anything in the documentation to reference what this did.

Hey insomniacc,

got the same problem with “ShowPagination” and would like to know hot to “fix” this.

Thanks,
Sebastian

This will be fixed in 1.5.11.

The problem is that we are enabling pagination automatically for tables over 20 rows but there is no way to turn it off. The change will be to just stop doing that and then if you want pagination, to use the ShowPagination parameter.

Awesome thanks!!