Hi, I have create a grid in docking layout.
When I set showfilterrow: true, it will cause RangeError: Invalid array length
Here is my grid code
$("#jqxgrid").jqxGrid(
{
width: '100%',
source: dataAdapter,
columnsresize: true,
pageable: true,
pagermode: 'default',
sortable: true,
showfilterrow: true,
filterable: true,
groupable: true,
selectionmode: 'checkbox',
theme: "shinyblack",
columns: [
{ text: 'CAN_ID', datafield: 'can_id', width: '20%' },
{ text: 'Type', datafield: 'type', width: '25%' },
{ text: 'Length', datafield: 'length', width: '10%'},
{ text: 'Data', datafield: 'data', width: '42%' }
]
});
I have used the latest version 4.1.2 of jqxgrid.js.
If I remove showfilterrow: true it will work.
How can I solve this problem?