sogo/UI/WebServerResources/tablekit-sogo.js
Francis Lachapelle b6ac93ac8e Fix for bug #2896
Monotone-Parent: a0736ebfe97dd1ff5f02d3f1a6f20c4e5c593b0c
Monotone-Revision: c4c5e180ad8506d04424626e6382fcd5b2b6a073

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2008-09-05T02:12:56
Monotone-Branch: ca.inverse.sogo
2008-09-05 02:12:56 +00:00

12 lines
449 B
JavaScript

Object.extend(TableKit, {
getHeaderCells : function(table, cell) {
if(!table) { table = $(cell).up('table'); }
var id = table.id;
if(!TableKit.tables[id].dom.head) {
// If there are tHead parts, use the first part, not the last one.
TableKit.tables[id].dom.head = $A((table.tHead && table.tHead.rows.length > 0) ? table.tHead.rows[0].cells : table.rows[0].cells);
}
return TableKit.tables[id].dom.head;
}
});