self reply, ForTheRecords

I've found the "sortable" is a column property
so when I switch the mode (sortable=true/false) I must loop the columns data and change them
var columns = $('#dg').datagrid('options').columns[0];
for (var i = 0; i < columns.length; i++) {
columns[i].sortable = sortMode;
}