Template:Prettytable: Difference between revisions

Template page
w:c:strategywiki>DrBob
m (Expanded)
w:c:strategywiki>DrBob
m (Expanded)
Line 2: Line 2:


Template to put at the top of table declarations to standardise and prettify their appearance.
Template to put at the top of table declarations to standardise and prettify their appearance.
By default it will make the table occupy all the page's width. If you want to turn it off, call the template as follows: <nowiki>{{prettytable|notwide}}</nowiki>.
By default it will make the table occupy all the page's width. If you want to turn it off, call the template as follows: <nowiki>{{prettytable|notwide=1}}</nowiki>. Additionally, you can mark the table as sortable (i.e. if it's a table of sortable values, such as {{tl|yes}} or {{tl|no}}), by using the "sortable" parameter: <nowiki>{{prettytable|sortable=1}}</nowiki>.


== Example ==
== Example ==

Revision as of 11:51, 10 February 2007

border="1" cellspacing="4" cellpadding="1" class="wikitableTemplate:Qif" rules="all" style="margin:1em 1em 1em 0;border:solid 1px #AAA; border-collapse:collapse;empty-cells:show;Template:Qif"

Template to put at the top of table declarations to standardise and prettify their appearance. By default it will make the table occupy all the page's width. If you want to turn it off, call the template as follows: {{prettytable|notwide=1}}. Additionally, you can mark the table as sortable (i.e. if it's a table of sortable values, such as {{yes}} or {{no}}), by using the "sortable" parameter: {{prettytable|sortable=1}}.

Example

Wide

{| {{prettytable}}
| Boo!
| Foo
| Bar
|-
| Test
| 2
| 3
|}
Boo! Foo Bar
Test 2 3

Not wide

{| {{prettytable|notwide=1}}
| Boo!
| Foo
| Bar
|-
| Test
| 2
| 3
|}
Boo! Foo Bar
Test 2 3