Summary | Remove stripe.js |
Queue | Horde Base |
Queue Version | HEAD |
Type | Enhancement |
State | Rejected |
Priority | 1. Low |
Owners | |
Requester | slusarz (at) horde (dot) org |
Created | 08/13/2008 (6170 days ago) |
Due | |
Updated | 12/14/2008 (6047 days ago) |
Assigned | |
Resolved | 12/14/2008 (6047 days ago) |
Milestone | 4 |
Patch | No |
State ⇒ Rejected
State ⇒ Feedback
code does, though. And it doesn't provide a trigger for re-striping a
table after filtering rows from it or adding rows to it.
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒ 4
Assigned to
Assigned to Michael Slusarz
Queue ⇒ Horde Base
Summary ⇒ Remove stripe.js
Type ⇒ Enhancement
State ⇒ Assigned
necessary row striping for us onload:
document.observe('dom:loaded', function() {
$H({ even: 'rowEven', odd: 'rowOdd' }).each(function(r) {
$$('table.striped tr:nth-child(' + r.key +
')').invoke('addClassName', r.value);
});
});
For Horde 4, rather than having a separate stripe.js file, it would
probably be best to include this in horde.js.