Is it possible to change the date format which is used by the calendar-popup?
|
<script>
$(function () {
$("#datePicker").ejDatePicker({
locale: "de-DE",
...
});
});
</script> |
|
<script type="text/javascript">
$(function () {
$("#Grid").ejGrid({
......
columns: [
{ field: "OrderDate", headerText: "Order Date", width: 80, format: "{0:MM-dd-yyyy}", textAlign: ej.TextAlign.Right, priority: 2 },
]
});
});
</script> |