The type of the row selection mechanism.
If this setting is set to "basic" when the user select a row, then this row will be highlighted.
If this setting is set to "checkbox" a column with checkboxes will appear as first row of the grid and when the user select a row, then this row will be highlighted and the checkbox selected.
Examples
sample
<table id="grid"></table>
<script>
$('#grid').grid({
dataSource: '/0_6/Grid/GetPlayers',
selectionType: 'single',
selectionMethod: 'checkbox',
columns: [ { field: 'ID' }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
</script>