I am returning date and time in a named query to a perspective table:
named query result set:
but the column data displays something like this:
Any idea how to fix this?
I am returning date and time in a named query to a perspective table:
named query result set:
but the column data displays something like this:
Any idea how to fix this?
In the table's columns property, configure that column to render dates. Under the hood, Ignition datetime values are UTC milliseconds, and since JSON doesn't have that, they are transmitted as long integers. Ignition's components (most of them) understand how to deal with them, but for some components, they need a cue. (You might actually want to display 64-bit integers in a table.)
Yes, that is required for every column in columns for reliable behavior.