im creating a custom filter, the functionality is basically the same that is built-in in the ag-grid.
Is the:
var NumberFilter = (function () {
function NumberFilter() {
}
NumberFilter.prototype.init
The only difference is that i only need to change the function
NumberFilter.prototype.onFilterChanged
To replace commas by dots. But to overwrite all the methods it doesnt makes much sense, is there a way in inherite the functionality of the filter 'number' and change only the NumberFilter.prototype.onFilterChanged?