Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Internet Explorer: CellIndex is Calculated in Display Order


View products that this article applies to.

Symptoms

When you use the cellIndex property when you script a Web page, and then you use the property to reference the next cell in tree order, it may instead reference the next cell in display order and return the wrong value.

↑ Back to the top


Workaround

To work around this behavior, you can compute the correct index value by using a function similar to the following function:
// returns absolute (document) index of cell 
// from table and relative (visible) index of cell 

function getAbsoluteIndex(t,relIndex) 
{ 
countnotvisible=0; 
countvisible=0; 
for (i=0;i<t.cells.length;i++) { 
cell=t.cells(i); 
if (cell.style.display=='none') countnotvisible++; else countvisible++; 
if (countvisible>relIndex) return i; 
} 
return i; 
} 

↑ Back to the top


Resolution

A supported fix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Apply it only to computers that are experiencing this specific problem. This fix may receive additional testing. Therefore, if you are not severely affected by this problem, Microsoft recommends that you wait for the next Internet Explorer 6 service pack that contains this fix.

To resolve this problem immediately, contact Microsoft Product Support Services to obtain the fix. For a complete list of Microsoft Product Support Services phone numbers and information about support costs, visit the following Microsoft Web site:NOTE: In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The typical support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

The English version of this fix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.
   Date         Time   Version        Size       File name
   --------------------------------------------------------
   16-Apr-2003  10:46  6.0.2800.1190  2,792,960  Mshtml.dll    

				
The German version of this fix has the file attributes (or later) that are listed in the following table.
   Date         Time   Version        Size       File name
   --------------------------------------------------------
   16-Apr-2003  10:50  6.0.2800.1190  2,792,960  Mshtml.dll 

				
The hotfix package automatically installs the following registry key that has a REG_DWORD value of 1:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main Count Hidden Table Cells
If you delete this registry key, you disable the fix.

↑ Back to the top


Status

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.

↑ Back to the top


Properties

↑ Back to the top


Article Info
Article ID : 814506
Revision : 5
Created on : 1/1/0001
Published on : 1/1/0001
Exists online : False
Views : 306