[[PageOutline(2-5,Contents,pullout)]] = Styled Table Plugin == Description The !StyledTablePlugin allows the creation of tables within a wiki page. As part of the table markup, styles can be defined in a CSS style markup. These styles can be applied to elements of the table, including the rows, columns and the overall table. The CSS styles can be defined as part of the table markup or as part of the !TableStyles wiki page inside a `codeblock`. This page is the recommended way to store and use any predefined styles. Checkout the documentation [http://trac-hacks.org/wiki/TablePlugin/docs here] to see how to use the plugin's markup. == Bugs/Feature Requests Existing bugs and feature requests for TablePlugin are [report:9?COMPONENT=TablePlugin here]. If you have any issues, create a [/newticket?component=TablePlugin new ticket]. [[TicketQuery(component=TablePlugin&group=type,format=progress)]] == Download Download the zipped source from [download:tableplugin here]. == Source You can check out TablePlugin from [http://trac-hacks.org/svn/tableplugin here] using Subversion, or [source:tableplugin browse the source] with Trac. == Example Example style definitions. The style page is located under the `TRAC_ROOT_URL/wiki/TablePluginStyles`. All styles should be defined inside a codeblock. This also allows Trac to keep a history of all the styles and corresponding changes they've gone through. {{{ {{{ @table default: table.default { font-family: verdana,arial,sans-serif; font-size:11px; color:#333333; border-width: 1px; border-color: #666666; border-collapse: collapse; } table.default thead th { border-width: 1px; padding: 2px; border-style: solid; border-color: #666666; background-color: #dedede; } table.default tbody td { border-width: 1px; padding: 2px; border-style: solid; border-color: #666666; } @css header: font-weight: bold; text-align: center; @css complete: font-weight: bold; background: palegreen; @css not_complete: font-weight: bold; background: #F80000; }}} }}} Example definition of a table with some styles applied: {{{ {{{ #!styledtable #!-- Define the table style @table (@default): #!-- Define the three columns to use @column task @column details @column status #!-- Tell the TablePlugin that this row should be styled with @header @row (@header) #!-- Define the first row, the table headers @task: Task @details: Details @status: Status #!-- The next row, noticed the @complete style applied to @status cell. @task: Task 1 @details: Details of Task 1. @status (@complete): Complete #!-- Remaining rows below... @task: Task 2 @details: Details of Task 2. @status (@complete): Complete @task: Task 3 @details: Details of Task 3. @status (@not_complete): Not Complete @task: Task 4 @details: Details of Task 4. @status: Waiting... @task: Task 5 @details: Details of Task 5. @status: Waiting... }}} }}} The resulting table output from the above styles: [[Image(table_example1.png)]] == Recent Changes [[ChangeLog(tableplugin, 3)]] == Author/Contributors '''Author:''' [wiki:jonny] [[BR]] '''Maintainer:''' [[Maintainer]] [[BR]] '''Contributors:'''