Hi,
I display time in my grid by using:
When i change my timezone the time changes, how do i prevent this?
i use:
But it still changes when i change my timezone.
I display time in my grid by using:
columns.Bound(p => p.StartDate).Format(
"{0:HH:mm}"
).Title(
"Tid"
);
i use:
<script src=
"@Url.Content("
~/Scripts/kendo/2012.3.1121/cultures/kendo.culture.sv-SE.min.js
")"
></script>
<script>
$(document).ready(function () {
//set culture of the Kendo UI
kendo.culture(
"sv-SE"
);
});
</script>