I need to be able to replace the standard juce TableListRowComp with one of my own.
This has to do with the way that the standard one doesnt allow us to customise the appearance of the listbox for the area shown below the last ACTUAL row of data.
For example to make the background colour the same, or to make alternate lines a different colour ( as on the Mac ) .
I would like therefore to be able to override TableListBox::refreshComponentForRow() with one of my own - so I can create one of my own.
I think a new abstract class ( interface ) will needed to so my new component inherits from this abstract class interface ( the existing TableListRowComp will need to as well )
For the time being i have had to resort to basically creating a copy of the TableListbox files and modifying and renaming classes etc. But i’d prefer not to fork my
JUCE dependencies here.