I am in the process of developing a custom filter that has similar functionality to the predefined filter in the ag-grid.
Specifically:
var NumberFilter = (function () {
function NumberFilter() {
}
NumberFilter.prototype.init
The main difference is that I only need to modify one function:
NumberFilter.prototype.onFilterChanged
My goal is to replace commas with dots. However, rewriting all the methods seems unnecessary. Is there a way to inherit the 'number' filter's functionality and only alter the NumberFilter.prototype.onFilterChanged?