Hi,
I cannot find out, how to build this kind of table structure.
Normally a table-structure is like this:
| Name | Age | Phone |
| John | 23 | 1235486 |
| Sarah | 44 | 6876516 |
| Pam | 51 | 3786541 |
| Nick | 79 | 4896165 |
But I want a table like this:
| Name | John | Sarah | Pam | Nick |
| Age | 23 | 44 | 51 | 79 |
| Phone | 1235486 | 6876516 | 3786541 | 4896165 |
And the table should be build by a filter (filtering for [<currentTiddler>tags[]tag[person]] ) with the fields “Name”, “Age”, “Phone”.
I do not need to see the headers (“Name”, “Age”, “Phone”), only the related cells.
I don’t mind, if html or wikitext.
I took the first one, because I also have to transclude images and managed to do that with the first one, but not with the second.
I am fine with it- it works fine
But now I have another problem and cannot find out, why and not how to solve it:
I wrote this table inside <appear> and inside <div style> and because of both the rest of the tiddler is kind of broken.
I tried this:
Removing the <div style="...> & the </div> >>problem remains.
Removing the <$appear> & </$appear> >>problem remains.
Removing all of <div style> & all of <$appear> >>problem is gone.
As long as the widgets aren’t “nested” inside other syntax (such as <$appear> or <div>), unmatched widgets are automatically closed when the end of the tiddler is reached. This also happens when the end of a macro or procedure definition is reached.