Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New-UDGrid] Grids show dates as "/Date(...)/" #222

Closed
kort3x opened this issue Dec 18, 2017 · 2 comments
Closed

[New-UDGrid] Grids show dates as "/Date(...)/" #222

kort3x opened this issue Dec 18, 2017 · 2 comments

Comments

@kort3x
Copy link

kort3x commented Dec 18, 2017

code:

New-UDTable -Title "Events in a table" -Headers @("TimeWritten","Source", "EventID") -Endpoint {
        Get-EventLog -LogName system -Newest 3 -EntryType Error | Out-UDTableData -Property @("TimeWritten","Source", "EventID")
}
    
New-UdGrid -Title "Events in a grid" -Properties @("TimeWritten","Source", "EventID") -Headers @("TimeWritten","Source", "EventID") -Endpoint {
        Get-EventLog -LogName system -Newest 3 -EntryType Error | Out-UDGridData
}

output:

image

@adamdriscoll
Copy link
Owner

I need to add a -DateTimeFormat parameter to New-UDGrid as well.

@adamdriscoll
Copy link
Owner

Fixed in 1.3.0-beta5

@adamdriscoll adamdriscoll added this to Done in v1.3.0.0 Dec 22, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
No open projects
v1.3.0.0
  
Done
Development

No branches or pull requests

2 participants