-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter pop up not updating #11
Comments
Thanks for fixing this. This now works. However what would be really helpfull is the option of being able to decide whether new data is included in the filter or not. Take these two scenarios for example:
Therefore could you add some method to the filter for example |
This requirement would probably be satisfied by the ability to add custom actions. See issue #8. |
OK thanks, do you know when you are likely to implement this new feature? |
Working on it. It is one of the few issues left for planned v1.0 release. Would probably estimate 1-2 weeks |
Thats great, thanks very much. |
Hows the release coming along? Any updates? The new custom actions will be very useful for me |
Working on it :) Besides number filtering, do you have anything else in mind? |
Great :). If possible I suppose I would like the filters to be as close to excel as possible i.e Numbers: greater than, less than, not equal too, equal too, above/below average The way I would probably do it, is create the most standard filters as concrete custom actions that programmers can simply add, without having to worry about the inner workings. Then if we want to create more advanced filters there should be an interface we can extend/implement to create our own. Thanks! |
Fix issue #11. Properly listen for data changes in the table model Why doesn't the source code reflect the above changes? |
Was experimental change at the time :) I added it to the master |
The filter popup does not show the correct values which are now in the column
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import org.oxbow.swingbits.table.filter.IFilterChangeListener;
import org.oxbow.swingbits.table.filter.ITableFilter;
import org.oxbow.swingbits.table.filter.JTableFilter;
import org.oxbow.swingbits.table.filter.TableRowFilterSupport;
import java.awt.event.*;
public class TableFilter {
final JTable table;
JTableFilter tableFilter;
}
The text was updated successfully, but these errors were encountered: