Display Numeric-Date column as "d/m/y h:m:s"?
Hello, I have a date-time column that I want to display as "d/m/y h:m:s", yet retain its Numeric-Date data type (as in the right table of the figure): I have the following: :"Time" << Data Type(Numeric);
:"Time" << Set Modeling Type(Continuous);
:"Time" << Set Format(Format("m/d/y h:m:s", 23));
But it instead converts the column onto Unix time format. How do I get this done through JSL? Thanks,Lo...