We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 text was updated successfully, but these errors were encountered:
The part "\d{1-3}" in the Regex is wrong, it has to be "\d{1,3}" or "\d{1,6}" if you like.
Sorry, something went wrong.
No branches or pull requests
with
without change
to
The text was updated successfully, but these errors were encountered: