Guys, I need your awesome help again. I have two models - FlightType and FlightTypeCategory. FlightType belongs_to FlightTypeCategories. I want to present these in a table, the categories spanning over the flighttypes, like this: <table> <tr> <th colspan="2">Flight Category 1</th> <th colspan="3">Flight Category 2</th> </tr> <tr> <td>Flight Type 1</td> <td>Flight Type 2</td> <td>Flight Type 3</td> <td>Flight Type 4</td> <td>Flight Type 5</td> </tr> </table> You probably get it. The problem is - the user can show/hide the flight types to his/her liking. So the flight type categories will have dynamic colspans, if visible at all. I''m completely stuck here. I have @flight_types, which calls FlightTypes.visible, and returns an array of the visible flight types. But I can''t seem to figure out how to run this to fetch the corresponding flight type categories. I hope I''ve made my issue clear. Any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---