Dear support,
I set these settings in the filteroptions grid:
I set this template for a specific column
But unfortunately we get this error:
TypeError: Cannot read properties of null (reading 'appendChild')
at FilterCellRenderer.operatorIconRender (filter-cell-renderer.js?774f:176)
at FilterCellRenderer.render (filter-cell-renderer.js?774f:145)
at _loop_1 (row-renderer.js?8708:96)
at RowRenderer.refreshRow (row-renderer.js?8708:128)
at RowRenderer.render (row-renderer.js?8708:34)
at Filter.render (filter.js?7d05:92)
at Observer.notify (observer.js?811a:101)
at Grid.Component.notify (component.js?c155:265)
at HeaderRender.renderTable (header-renderer.js?d724:177)
at Render.render (render.js?3632:62)
the error is in this line:
FilterCellRenderer.prototype.operatorIconRender = function (innerDIV, column, cell) {
var gObj = this.parent;
var fbicon = this.parent.createElement('input', {
className: ' e-filterbaroperator e-icons e-icon-filter',
id: cell.column.uid
});
innerDIV.querySelector('span').appendChild(fbicon);
How can I solve this problem?