You can take a look at the columns property in the API documentation. You just need to set the column’s editable property to false,
In the Example below, the First Name column’s editing is disabled.
$("#jqxgrid").jqxGrid( { width: 600, source: dataAdapter, editable: true, theme: theme, selectionmode: 'singlecell', editmode: 'click', columns: [ { text: 'First Name', editable: false, columntype: 'textbox', datafield: 'firstname', width: 90 }, { text: 'Last Name', datafield: 'lastname', width: 90 }, { text: 'Product', datafield: 'productname' }, { text: 'Quantity', datafield: 'quantity', width: 70, cellsalign: 'right' }, { text: 'Available', datafield: 'available', columntype: 'checkbox', width: 67 } ] });
Best Wishes,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com