(using SmartClient 8.3 eval)
I have a ListGrid with a datetime column. Each of these work exactly as shown in the documentation:
Date.setShortDatetimeDisplayFormat("toDateStamp");
Date.setShortDatetimeDisplayFormat("toLocaleString");
Date.setShortDatetimeDisplayFormat("toUSShortDate");
Date.setShortDatetimeDisplayFormat("toUSShortDatetime");
However, when I use "toSerializeableDate", it displays the date as "YYYY-MM-DD"
I need it to work as shown in the documentation: "YYYY-MM-DD HH:MM:SS"
Am I doing something wrong ??
I have a ListGrid with a datetime column. Each of these work exactly as shown in the documentation:
Date.setShortDatetimeDisplayFormat("toDateStamp");
Date.setShortDatetimeDisplayFormat("toLocaleString");
Date.setShortDatetimeDisplayFormat("toUSShortDate");
Date.setShortDatetimeDisplayFormat("toUSShortDatetime");
However, when I use "toSerializeableDate", it displays the date as "YYYY-MM-DD"
I need it to work as shown in the documentation: "YYYY-MM-DD HH:MM:SS"
Am I doing something wrong ??
Comment