Product: PowerShell Universal
Version: 4.2.17
New-UDTable is only showing the first row of my data. I know that the data has 5 rows, but only the top one shows.
Here is the portion code where the table is created:
New-UDDynamic -Id "SearchTable" -Content {
Show-UDToast -Message "Count: $(($session:SearchResults).Count)$($session:SearchResults[4])" -Duration 10000
New-UDTable -ID 'SearchResultsTable' -Title 'Search Results' -Data
$session:SearchResults -Columns @(
New-UDTableColumn -Property 'First Name' -Title 'First Name'
New-UDTableColumn -Property 'Last Name' -Title 'Last Name'
New-UDTableColumn -Property 'DOB' -Title 'Date of Birth'
New-UDTableColumn -Property 'Address' -Title 'Address'
New-UDTableColumn -Property 'Phone' -Title 'Phone'
New-UDTableColumn -Property 'Phone2' -Title 'Phone 2'
New-UDTableColumn -Property 'ID' -Title 'Person ID'
)`
-OnRowExpand {
I do get the following errors, but I am not sure if these are from the table creation or something else:
Any help would be appreciated!
Thank you