Hi,
In my root module (defined below), I call kendo.culture and it sets the culture right.
1. I noticed that the culture that I set in my root module (app.js) does not propagate to other modules. Any idea why?
2. When I call kendo.culture in another module (to work around problem 1), the culture does not change (I check it by calling kendo.culture() from the console, it is always en-US. Any idea? Here is an example of how my other modules are defined (it's pretty much the same than above):
Thanks,
Alex
In my root module (defined below), I call kendo.culture and it sets the culture right.
(function () { define(['jquery', 'amplify', 'modules/tools', 'k/kendo.router.min', 'k/kendo.view.min', 'k/cultures/kendo.culture.fr-CA.min', 'k/cultures/kendo.culture.en-CA.min'], function ($, amplify, tools) {2. When I call kendo.culture in another module (to work around problem 1), the culture does not change (I check it by calling kendo.culture() from the console, it is always en-US. Any idea? Here is an example of how my other modules are defined (it's pretty much the same than above):
(function () { define(['jquery', 'amplify', 'modules/tools', 'modules/date', 'k/kendo.dataviz', 'k/cultures/kendo.culture.fr-CA.min', 'k/cultures/kendo.culture.en-CA.min'], function ($, amplify, tools) {Thanks,
Alex