For those who saw my most recent post, I am still working with this Fantasy Football Draft Manager Program and now I need help stylistically.
Ok, so right now I have a filter system that allows the user to filter through the 500 or so players based on the following criteria: Positions, NFL Team, and Last Name. The user can activate and deactivate the NFL Team and the Last Name filters at their discretion. The Positions filter however is always activated as it is the primary filter. The Positions filter is currently a JComboBox with the following options: All,QB,RB,WR,RB/WR,TE,DST,K. There is the possibility of expansion, so that might increase to other options in the future.
Now, I had an idea. What if I already have my QB and I want to look at all the other positions, excluding QBs. That would be a nice feature and it would have to be some sort of checkbox thing I would think. However, with the possibility of a dynamic number of positions AND for it to look good, adding 8 checkboxes in a clustered group just wont do it. My next thought was perhaps putting checkboxes in the JComboBox, but I think that would still look tacky and possibly difficult to use.
Does anyone have any suggestions as to what the best route to go would be?