Hello Narendra,
Each column has a filterable property, which you can set to false to disable filtering of the particular column, e.g.:
$("#jqxgrid").jqxGrid(
{
width: 670,
source: adapter,
filterable: true,
sortable: true,
autoshowfiltericon: true,
columns: [
{ text: 'First Name', datafield: 'firstname', width: 90, filterable: false },
{ text: 'Last Name', datafield: 'lastname', width: 90 },
{ text: 'Product', datafield: 'productname', width: 170 },
{ text: 'Order Date', datafield: 'date', width: 160, cellsformat: 'dd-MMMM-yyyy' },
{ text: 'Quantity', datafield: 'quantity', width: 80, cellsalign: 'right' },
{ text: 'Unit Price', datafield: 'price', cellsalign: 'right', cellsformat: 'c2' }
]
});
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/