|
@Html.EJS().Grid("FlatGrid").DataSource((IEnumerable<object>)ViewBag.dataSource)
.Columns(col =>
{
...
}).Load("load").Render()
<script>
function load(args) {
//Set the dateTime format for the date column “OrderDate” based on index
this.columns[4].format = { type: 'date', format: 'dd/MM/yyyy' };
}
</script>
|
|
<script>
function load(args) {
//Set the dateTime format for the date column “OrderDate” based on index
this.columns[4].format = { type: 'date', format: 'dd.MM.yyyy' };
}
</script>
|