webix
webix copied to clipboard
webix does not parse dates
with
webix.DataDriver.json.parseDates = true
without change
var isodate = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(.\d{1-3})?Z/;
to
var isodate = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(.\d{1-6})?/;
The part "\d{1-3}" in the Regex is wrong, it has to be "\d{1,3}" or "\d{1,6}" if you like.