search for: subcategories_

Displaying 2 results from an estimated 2 matches for "subcategories_".

Did you mean: subcategories
2006 Mar 31
7
Checkboxes expand to show new options when checked?
I''m writing a simple CMS where every item ("listing") HABTM categories and subcategories (which themselves belong_to a category). What I''m trying to do now is create a UI effect for listing creation: when you go to create a listing, only the possible categories will be shown, but when you select a category a set of new categories will be displayed like so: Lions
2006 Apr 07
13
Pop up menus - any ideas?
...categories. I want to set it up so when you mouse over the category the subcategories will pop up (to the right of the main list, but that''s just CSS). This is what I have so far: <% for category in @categories %> <a href="#" onmouseover="Element.show(''subcategories_<%=category.name%>'')"> <%= link_to category.name, :action => ''category'', :id => category %> <div id="subcategories_<%=category.name%>" style="display:none"> <div id="indented_categories"> <%...