toggle

Sets whether the user can select other cell without deselecting previous one. This can be used only when selection.multiple is set to true:

$("#grid").shieldGrid({
    dataSource: {
        data: [
            { ID: 1, name: "name1" },
            { ID: 2, name: "name2" }
        ]
    },
    selection: {
        type: "row",
        multiple: true,
        toggle: true
    },
    columns: [
        { field: "ID", title: "Unique Number", format: "{0:c}" },
        { field: "name", title : "Name", width: "300px" }
    ]
});

Live demo of toggle selection functionality you can find here: Milti Toggle Selection