Disable row selection in mvc and Enable column selection in mvc kendo grid

Solution 1:

You should state that the selection type is cell, like this:

.Selectable(s => s
    .Mode(GridSelectionMode.Single)
    .Type(GridSelectionType.Cell))