Modify ↓
Opened 13 years ago
Closed 10 years ago
#9855 closed defect (wontfix)
[PATCH] UI conflict with TimingAndEstimation
Reported by: | HumanInternals | Owned by: | CuriousCurmudgeon |
---|---|---|---|
Priority: | normal | Component: | BatchModifyPlugin |
Severity: | normal | Keywords: | |
Cc: | Russ Tyndall | Trac Release: | 0.12 |
Description
The TimingAndEstimationPlugin adds an <tfoot>
to the table with some totals, which the BatchModify plugin modifies. This patch fixes it by specifically looking for elemehts in <thead>
and <tobdy>
only:
-
batchmod/htdocs/js/batchmod.js
ndex: batchmod/htdocs/js/batchmod.js
89 89 90 90 //Add a new column with checkboxes for each ticket. 91 91 //Selecting a ticket marks it for inclusion in the batch. 92 $("table.listing t r td.id").each(function() {92 $("table.listing tbody tr td.id").each(function() { 93 93 tId=$(this).text().substring(1); 94 94 $(this).before('<td><input type="checkbox" name="selectedTicket" class="batchmod_selector" value="'+tId+'"/></td>'); 95 95 }); 96 96 97 97 //Add a checkbox at the top of the column to select ever ticket in the group. 98 $("table.listing t r th.id").each(function() {98 $("table.listing thead tr th.id").each(function() { 99 99 $(this).before('<th class="batchmod_selector"><input type="checkbox" name="batchmod_toggleGroup" /></th>'); 100 100 }); 101 101
Attachments (0)
Change History (3)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Cc: | Russ Tyndall added; anonymous removed |
---|
This patch has not been incorporated into the BatchModifyPlugin in Trac 0.13dev.
(cc'ing the TimingAndEstimationPlugin author since he may be able to head off a potential future compatibility problem between his plugin and Trac 0.13)
comment:3 Changed 10 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
The plugin is deprecated since it has been integrated to the Trac core for 1.0. Upgrade to Trac 1.0 and uninstall this plugin to get the latest functionality. Enhancement requests can be directed to Trac.
Note: See
TracTickets for help on using
tickets.
Duplicate of #8368, but the lower numbered ticket was closed because this one has a patch.