Hi!
We have discovered a bug in the DateTimeInput-widget. When you try to set the formatstring (previously formatString) you get an error saying that it is an invalid property. Looking in the angular_jqxdatetimeinput.ts there is a call to this.host.jqxDateTimeInput(‘formatstring’, arg);
Looking at the error and the fact that we do not get undefined it seems that the string here is a problem. By changing the string to the old name, formatString, so the call is instead this.host.jqxDateTimeInput(‘formatString’, arg); fixes the bug.
Thx