Hi ramyabeena,
Here is how to achieve this:
$("#jqxgrid").jqxGrid( { width: 670, source: dataAdapter, theme: theme, pageable: true, autoheight: true, sortable: true, altrows: true, enabletooltips: true, editable: true, selectionmode: 'multiplecellsextended', columns: [ { text: 'Product Name', datafield: 'ProductName', width: 250, editable: false }, { text: 'Quantity per Unit', datafield: 'QuantityPerUnit', width: 150, editable: false }, { text: 'Unit Price', datafield: 'UnitPrice', cellsalign: 'right', cellsformat: 'c2', width: 70, editable: true }, { text: 'Units In Stock', datafield: 'UnitsInStock', cellsalign: 'right', cellsrenderer: cellsrenderer, width: 100, editable: false }, { text: 'Discontinued', columntype: 'checkbox', datafield: 'Discontinued', width: 100, editable: false }, ] });
In this case only the column ‘Unit Price’ can be edited.
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/