列テンプレートを使用できます。 jqGridのすべての列に対して sortable:false
を設定するか、単に使用可能な sortable
プロパティのデフォルト値として設定するには
cmTemplate: {sortable: false}
追加のjqGridオプションとして。 tableToGrid を使用する場合は、同じオプションを追加するだけです tableToGrid
の2番目のパラメータに追加します。
tableToGrid('#list', {cmTemplate: {sortable: false}});
UPDATED: I don't understand where you have any problem. Here you will find very simple demo which work. If you would click on any column header the grid will be not sorted.