Hi hpawar,
You have to set the Grid’s editmode property to the appropriate value.
The sample’s default value is “click”.
Example:
` $(“#jqxgrid”).jqxGrid(
{
width: 850,
source: dataAdapter,
editable: true,
selectionmode: ‘singlecell’,
editmode: ‘click’,
columns: [
{ text: ‘First Name’, 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 Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com