You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I realised DateField::create("Date")->setConfig("jslocale", "[language]") doesn't work properly. Class "DateField_View_JQuery" have logic to use "jslocale"-property (check getLang-function in DateField.php:599) but the framework never use those lines of code.
Fast fix for bug:
DateField.php:584 if ($this->jqueryLocaleFile) to if ($this->regionalSettingsExist() && $this->jqueryLocaleFile)
The text was updated successfully, but these errors were encountered:
I realised DateField::create("Date")->setConfig("jslocale", "[language]") doesn't work properly. Class "DateField_View_JQuery" have logic to use "jslocale"-property (check getLang-function in DateField.php:599) but the framework never use those lines of code.
Fast fix for bug:
DateField.php:584
if ($this->jqueryLocaleFile)
toif ($this->regionalSettingsExist() && $this->jqueryLocaleFile)
The text was updated successfully, but these errors were encountered: