You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I make a dashboard with a grid and the requested data equals null the grid will generate a table with a exclamation mark the table is also stretched. Example code:
Hello Adam,
When I make a dashboard with a grid and the requested data equals null the grid will generate a table with a exclamation mark the table is also stretched. Example code:
New-UDGrid -DefaultSortColumn 'Transitiontime' -Title "Server and connection failed issues with ticket" -Headers @("Customer", "Device", "Device Class", "Service", "Ticket", "Transitiontime") -Properties @("CustomerName", "DeviceName", "DeviceClass", "ServiceName", "PSATicketDetails", "TransitionTime") -Endpoint { ((Get-Content -Path $FileActivite | convertfrom-json) | Select-Object CustomerName,DeviceName,DeviceClass,ServiceName,PSATicketDetails,TransitionTime | Where-Object {(($_.PSATicketDetails) -and ($_.DeviceClass -notmatch 'Workstation' -and $_.DeviceClass -notmatch 'Laptop') -and ($_.ServiceName -ne 'System Warranty'))} | Sort-Object -Property TransitionTime) | Out-UDGridData
Result when command is executed with shell:
`Result:
{
"draw": null,
"recordsTotal": null,
"data": [
"recordsFiltered": 0
}`
The text was updated successfully, but these errors were encountered: