column.type : checkbox|icon|date Default: undefined
Indicates the type of the column.
Examples
<table id="grid"></table>
<script>
$("#grid").grid({
dataSource: "../Grid/GetPlayers",
columns: [
{ field: "ID", width: 24 },
{ field: "Name", title: "Player" },
{ field: "PlaceOfBirth", title: "Place of Birth" },
{ field: "DateOfBirth", type: "date", title: "Birth Date" }
]
});
</script>