Extension talk:TableData

Add topic
From mediawiki.org

$parser->recursiveTagParse()[edit]

I had trouble when creating a Row template which created internal links, for example

<includeonly>
| [[{{{ {{{#1#}}} }}}]]
| {{{ {{{#2#}}} }}}
| {{{ {{{#3#}}} }}}
| {{{ {{{#4#}}} }}}
|-
</includeonly>

The first column do not show up at all. If I use bold instead, it works.

Following the comments found at: | DataTable, I modified ExtTableData.class.php to use

return trim($parser->replaceVariables( $wt, $frame ));

at the end of the tag() function successfully.

No header?[edit]

How to display a table without a header?

Templates not working inside the table?[edit]

It appears that templates dont work inside tabledata tables. They are displayed as {{templatename|...}}. How to override this?