$(“#classificationinfo”).jqxGrid(
{
width: screen.width – 200,
theme: ‘energyblue’,
height: 70,
source: adapter,
editable: true,
selectionmode: ‘singlecell’,
columns: [
{text: ‘Descriptor’, datafield: ‘descriptorClass’, width: 200},
{text: ‘Classification’, datafield: ‘codificationcode’, width: 200},
{text: ‘Description’, datafield: ‘description’, width: 180},
{text: ‘Code’, datafield: ‘codificationid’, width: 80, cellsalign: ‘right’},
{text: ‘Defintion’, datafield: ‘definition’, width: 405, cellsalign: ‘right’},
{text: ‘View Parent’, columntype: ‘checkbox’, datafield: ‘viewparent’, width: 100, cellsalign: ‘right’}
]
});
—————————————————
1)In above code I want to allow edit only for View Parent and disable edit option for other columns.How can I achieve this