Extension:FixedHeaderTable
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() Release status: unmaintained |
|
---|---|
Implementation | Tag |
Description | This extension wraps the jquery.fixedheadertable widget to create tables with fixed headers and optionally fixed columns. |
Author(s) | Ishmal Lewis, Mark Malek |
Latest version | 1.0.0 (2014-09-29) |
MediaWiki | 1.17+ |
PHP | 5.4.0 |
License | GNU General Public License 3.0 or later |
Download | |
Quarterly downloads | 3 (Ranked 171st) |
Translate the FixedHeaderTable extension if it is available at translatewiki.net | |
The FixedHeaderTable extension fixes the header of tables contained within the <fixedheadertable> tag.
Usage[edit]
This extension assumes the table markup is formatted line-by-line, with header markup (!
) used for header cells as shown in the example below:
<fixedheadertable fixedcolumns="1">
{| class="wikitable"
! Header 1
! Header 2
|-
| Cell 1
| Cell 2
|-
| Cell 3
| Cell 4
|}
</fixedheadertable>
Parameters[edit]
fixedcolumns="3"
- This parameter specifies the amount of columns to fix, counting from the left.
Installation[edit]
- Download and place the file(s) in a directory called
FixedHeaderTable
in yourextensions/
folder. - Add the following code at the bottom of your
LocalSettings.php
:require_once "$IP/extensions/FixedHeaderTable/FixedHeaderTable.php";
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.