-
Informed Sources
18
posts
Member since:
Jan 2009
Posted 12 Feb 2015
Link to this post
I've been using this script to get around errors with the grid saving Australian dates. In the latest release this file has disappeared and the problems are back.
<script src="@Url.Content("~/Scripts/kendo/2014.3.1411/cultures/kendo.culture.en-AU.min.js")"></script>
<script>
@{
var culture = System.Threading.Thread.CurrentThread.CurrentCulture.ToString();
}
kendo.culture("@culture");
var culture = kendo.culture();
culture.calendar.patterns.F = "dd MMM yyyy";
</script>
-
-
Informed Sources
18
posts
Member since:
Jan 2009
Posted 12 Feb 2015
Link to this post
I fixed it. For some reason the upgrade wizard deleted the cultures folder. I found it in the recycle bin. I restored it and it works again.
-