Hi team.
Your link is work fine.
I was test. but the problem was still.
“filtertype: ‘input'”‘s DOM element(innerListBoxjqxWidgetXXXXXXX) not removed.
: https://www.jseditor.io/?key=jqxgrid-destroy-method-1
modified config.
showfilterrow: true,
filterable: true,
columns: [{
text: ‘First Name’,
datafield: ‘firstname’,
columngroup: ‘Name’,
filtertype: ‘input’,
width: 90
}, {
text: ‘Last Name’,
columngroup: ‘Name’,
datafield: ‘lastname’,
filtertype: ‘input’,
width: 90
}, {
text: ‘Product’,
datafield: ‘productname’,
filtertype: ‘checkedlist’,
width: 170
}, {
text: ‘Order Date’,
datafield: ‘date’
,filtertype: ‘number’,
width: 160,
cellsformat: ‘dd-MMMM-yyyy’
}, {
text: ‘Quantity’,
datafield: ‘quantity’
,filtertype: ‘number’,
width: 80,
cellsalign: ‘right’
}, {
text: ‘Unit Price’,
datafield: ‘price’,
filtertype: ‘number’,
cellsalign: ‘right’,
cellsformat: ‘c2’
}]
});
Thanks.