Ignore:
Timestamp:
07/19/11 13:33:32 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1820 - Menu de contexto não é exibido em todos resultados de pesquisa.r4654

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/search.js

    r4799 r4802  
    426426                        var subject = aux.subject;  
    427427                         
    428                         tr.id = uid_msg+"_s"+global_search; 
     428                        tr.id = uid_msg+"_s"+numBox; 
    429429 
    430430                        // Keep the two lines together please 
     
    448448                                { 
    449449                                        td.setAttribute("width", colSizes[1][0]); 
    450                                         var td1 = '<input type="checkbox" id="search_' + numBox + '_check_box_message_'+uid_msg+'"></input>'; 
     450                                        var chk_onclick; 
     451                                        if (is_ie) 
     452                                                chk_onclick = "changeBgColor(window.event,"+uid_msg+");"; 
     453                                        else 
     454                                                chk_onclick = "changeBgColor(event,"+uid_msg+");"; 
     455                                        var td1 = '<input type="checkbox" onclick="' + chk_onclick + '" id="search_' + numBox + '_check_box_message_'+uid_msg+'"></input>'; 
    451456                                         
    452457                                } 
     
    599604                } 
    600605                 
    601                 global_search++; //Tabs from search must not have the same id on its tr's 
     606                //global_search++; //Tabs from search must not have the same id on its tr's // use numBox instead of this! 
    602607                 
    603608                table.appendChild(tbody); 
Note: See TracChangeset for help on using the changeset viewer.