Modify ↓
#12624 closed defect (fixed)
No Markup possible
Reported by: | anonymous | Owned by: | Peter Suter |
---|---|---|---|
Priority: | normal | Component: | TableSorterPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: |
Description
No markup at all.
Neither
<tr> <td>192.168.1.2</td> <td>hostname</td> <td>[wiki:host Host] & Gateway</td> <td></td> <td>GW for internal Host traffic</td> </tr>
nor even
<tr> <td>192.168.1.2</td> <td>hostname</td> <td><a>http://something</a> & Gateway</td> <td></td> <td>GW for internal Host traffic</td> </tr>
will work.
Attachments (0)
Change History (8)
comment:1 Changed 9 years ago by
comment:2 Changed 8 years ago by
Works for me with the [wiki:/PATH/TO/PAGE Short Name]
links. Perhaps it was updated to correct this issue?
comment:3 Changed 8 years ago by
Links don't work for me - neither internal to trac project nor do things like http://google.com look like clickable link. The mailto tag also doesn't work. Would it awesome if this could please be fixed.
comment:5 Changed 8 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:6 Changed 8 years ago by
Using jQuery
at global scope would avoid the possibility of conflicts:
-$(document).ready(function() - { - var tables = $('table.wiki'); - tables.each(function(index) { - var table = $(this); - var thRows = table.find("tr:has(th)"); - var thead = jQuery("<thead></thead>").appendTo(table); - var copy = thRows.clone(true).appendTo(thead); - thRows.remove(); - }); - tables.tablesorter(); - } -); +jQuery(document).ready(function($) { + var tables = $('table.wiki'); + tables.each(function(index) { + var table = $(this); + var thRows = table.find("tr:has(th)"); + var thead = $("<thead></thead>").appendTo(table); + var copy = thRows.clone(true).appendTo(thead); + thRows.remove(); + }); + tables.tablesorter(); +});
Note: See
TracTickets for help on using
tickets.
correction:
Will work, but that's PITA.