Select a Single row in JQGrid

At the properties add the below line.

multiselect: true,
       beforeSelectRow: function(rowid, e)
       {
           jQuery("#myTable").jqGrid('resetSelection');
           return(true);
       }

myTable - Table Id

Ref: http://jsfiddle.net/vandalo/YWVA8/4/