Changeset 4197


Ignore:
Timestamp:
05/03/11 12:14:16 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1814 - manter tbody como firstChild (ALL) - manter evento click no checkbox (FF).

Location:
branches/2.2.0.1/expressoMail1_2/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/expressoMail1_2/js/draw_api.js

    r4189 r4197  
    861861                                document.getElementById("colgroup_main_"+numBox).childNodes[c].setAttribute("width",colSizes[tbl][c]); 
    862862                                document.getElementById("colgroup_head_"+numBox).childNodes[c].setAttribute("width",colSizes[tbl][c]); 
    863                                 trM[r].cells[c].innerHTML = trM[r].cells[c].innerHTML; 
     863                                if (tbH.rows[0].cells[c].className=="th_resizable") 
     864                                        trM[r].cells[c].innerHTML = trM[r].cells[c].innerHTML; // stupid fix for FF to redraw cell content 
    864865                        } 
    865866                        else { 
  • branches/2.2.0.1/expressoMail1_2/js/main.js

    r4189 r4197  
    410410 
    411411                        var box = Element("tbody_box"); 
    412                         table_element.appendChild(box); 
     412                        table_element.insertBefore(box, Element("colgroup_main_"+numBox)); // keeps colgroup as the last child 
    413413 
    414414                        if (data.msgs_to_delete.length > 0) 
Note: See TracChangeset for help on using the changeset viewer.