XWiki Syntax Guide
                  Редактировал(а) atsarkov 20.03.2025 15:03
              
      XWiki Syntax 1.0 » Editing » Tables
XWiki Syntax 1.0: Tables
1.0 Tables
Allows to easily create content in table format.
| Feature | XWiki Syntax 1.0 | Result | ||||||
|---|---|---|---|---|---|---|---|---|
| Standard table | 
{table}
Title 1 | Title 2
Word 1 | Word 2
{table}
 | 
 | ||||||
| Parametrized table | <table style="background-color:red;text-align:center"> | 
 | ||||||
| Filterable Sortable table | 
$xwiki.ssfx.use("js/xwiki/table/table.css")
$xwiki.jsfx.use("js/xwiki/table/tablefilterNsort.js", true)
<table id="table1id" class="grid sortable filterable doOddEven">
  <tr class="sortHeader">
    <th>Title 1</th>
    <th>Title 2</th>
  </tr>
  <tr>
   <td>Cell 11</td>
   <td>Cell 12</td>
  </tr>
  <tr>
   <td>Cell 21</td>
   <td>Cell 22</td>
  </tr>
</table>
 | 
 | 
 
  