In my jqxGrid some columns are not required filterable and sortable feature, so as per the setting i used sortable: false ,filterable:false . But the drop down showing filter option (half cut display), even if I set that filterable:false
My Code :
$(“#jqxgridreports”).jqxGrid(
{
width: ‘99.8%’,
source: reportDataAdapter,
editable: false,
pageable: true,
autoheight: true,
columnsresize: true,
sortable: true,
filterable: true,
selectionmode: ‘singlecell’,
columns: [
{ text: ‘Actions’,sortable: false ,filterable:false,datafield: ‘ActLnk’, width: 60 , cellsrenderer: linkrenderer },
{ text: ‘Object ID [State]’, sortable: true ,datafield: ‘ObjectID’, width: 177 },
{ text: ‘Title’, datafield: ‘Title’ , width: 200},
{ text: ‘Description’,sortable: false,filterable:false,datafield: ‘Description’, columntype: ‘textbox’ , cellsformat: ‘c2’,width: 595 } ,
{ text: ‘Owner’, datafield: ‘Owner’, width: 81 }
]
});
Screen shot