User:Coincollector/collapsible table 2

From the Super Mario Wiki, the Mario encyclopedia
< User:Coincollector
Revision as of 21:11, December 27, 2008 by Coincollector (talk | contribs) (making another subpage)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

After several days going through, I've finally found a shorter way to make collapsible tables, something that this wiki lacked, while many other wikis that I met so far do have. Credits to the user Poke to find out this alternative for Mediawiki-based sites.

Using this function is really more simpler than the other first I had invented: By just adding said class, the table will turn collapsible, showing a show/hide link on the table. When adding the collapsible attribute to the table, this will be uncollapsed, collapsing then by click the link. On the other hand, adding expandable class, the table will remain collapsed, showing only the header cell where the user have to click the link to show the content. Users can also manipulate what sections can be shown by adding the expandable class to the cell's group, while the table is in collapsible function.

Usage

Code Result
{| class="collapsible"
! Table title
|-
| Table content
|}
Table title
Table content
{| class="expandable"
! Table title
|-
| Table content
|}
{|class="collapsible" 
! Table title
|- class="collapsible" 
! Subtitle 1
|-
| Content 1
|- class="expandable" 
! Subtitle 2
|-
| Content 2
|}
Table title
Subtitle 1
Content 1
Content 2