The field name to which the column is bound. If the column.title is not defined this value is used as column.title.
Examples
sample
<table id="grid"></table>
<script>
$('#grid').grid({
dataSource: '/Players/Get',
columns: [
{ field: 'ID', width: 56 },
{ field: 'Name' },
{ field: 'PlaceOfBirth', title: 'Place of Birth' }
]
});
</script>