column.mode : readEdit|editOnly|readOnlyDefault: readEdit

Provides a way to specify a display mode for the column.

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: '/Players/Get',
         columns: [
             { field: 'ID', width: 56 },
             { field: 'Name', editor: true, mode: 'editOnly' },
             { field: 'PlaceOfBirth', editor: true, mode: 'readOnly' }
         ]
     });
 </script>