The following is my attempt at implementing filter on dictionary. For simple testing purposes, I've set it up so that when you run the application, go to the translation filter box and hit enter, it filters all entries (ie no entries should appear in the table) and if you hit enter again, it should unfilter all entries (ie all entries should appear in the table). Right now the dictionary list itself is behaving correctly, since the entries in dictionary go to 0 upon filtering all, and return to original length upon filtering none. This outcome can be seen in the console window from using println() as a form of debugging every time you hit enter...
But it's not updating in the table.
My best guess the table is using a different instance of dictionary. thoughts?
The following is my attempt at implementing filter on dictionary. For simple testing purposes, I've set it up so that when you run the application, go to the translation filter box and hit enter, it filters all entries (ie no entries should appear in the table) and if you hit enter again, it should unfilter all entries (ie all entries should appear in the table). Right now the dictionary list itself is behaving correctly, since the entries in dictionary go to 0 upon filtering all, and return to original length upon filtering none. This outcome can be seen in the console window from using println() as a form of debugging every time you hit enter...
But it's not updating in the table.
My best guess the table is using a different instance of dictionary. thoughts?
@morinted and @germanika