473,396 Members | 2,085 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

New DOM elements invisible in IE, fine in FireFox

I have an AJAX driven page where I dynamically add rows to a known
table on the page, based on the return document from the AJAX call,
using DOM node methods (except for a small snippet of code, see below)
.. The code I use to do that is shown below.

The code runs fine in FireFox. I can see the newly created table rows
and everything looks fine on the page. In Internet Explorer, I don't
see any changes to the page after the new nodes are added.

I traced into the code using Microsoft's debugger. If I walk the child
nodes of the target table using the Immediate window (same as Mozilla
debugger's interactive window), I do see the newly created elements.
If I inspect the innerHTML of the new nodes I do see the HTML code in
proper format. But the page does not show the new elements at all.

Is this an Internet Explorer oddity and if so, what can I do to get
things working?

Thanks.

--------------------------

// Append the contents of TABLE in the "show links" DIV to the new
link.
// Helper function to build the mini table for the submitting user
name and notes.
function getShowLinkMiniTable(userName, notes)
{
var tblHtml =
"<TABLE ALIGN=LEFT VALIGN=TOP>\n" +
" <TR>\n" +
" <TD WIDTH=\"30%\">\n" +
" <P><b>Submitter:</b> " + userName + "</P>\n" +
" </TD>\n" +
" </TR>\n" +
" <TR>\n" +
" <TD WIDTH=\"70%\">\n" +
" <P><b>Notes:</b> " + notes + "</P>\n" +
" </TD>\n" +
" </TR>\n" +
"</TABLE>\n";

return tblHtml;
} // function getShowLinkMiniTable()
function appendShowLink(linkNum, linkHtml, userName, notes)
{
var tblShowLinks = document.getElementById("tblShowLinks");

if (!tblShowLinks)
{
alert("(appendShowLink) Unable to find the show links table.");
return;
}

// New row.
var trNew = document.createElement("TR");

// New cell - link num.
var pLinkNum = document.createElement("P");
pLinkNum.innerHTML = "" + linkNum;

var tdLinkNum = document.createElement("TD");
tdLinkNum.setAttribute("WIDTH", "10%");
tdLinkNum.setAttribute("VALIGN", "TOP");
// tdLinkNum.setAttribute("innerHTML", "" . linkNum);
tdLinkNum.appendChild(pLinkNum);

// New cell - link html.
var pLinkHtml = document.createElement("P");
pLinkHtml.innerHTML = linkHtml;

var tdLinkHtml = document.createElement("TD");
tdLinkHtml.setAttribute("WIDTH", "20%");
// tdLinkHtml.setAttribute("innerHTML", linkHtml);
tdLinkHtml.appendChild(pLinkHtml);

var tdUserMiniTable = document.createElement("TD");
tdUserMiniTable.setAttribute("WIDTH", "70%");
tdUserMiniTable.setAttribute("VALIGN", "TOP");

tdUserMiniTable.innerHTML = getShowLinkMiniTable(userName, notes);
// tdUserMiniTable.innerHTML = "<p>hello</p>";

// Add the cells to the row.
trNew.appendChild(tdLinkNum);
trNew.appendChild(tdUserMiniTable);
trNew.appendChild(tdLinkHtml);

// Add the new table data element to the table.
tblShowLinks.appendChild(trNew);
} // function setShowLinks()

Apr 1 '06 #1
3 2267
ro************@gmail.com said the following on 4/1/2006 3:37 PM:
I have an AJAX driven page where I dynamically add rows to a known
table on the page, based on the return document from the AJAX call,
using DOM node methods (except for a small snippet of code, see below)
.. The code I use to do that is shown below.

The code runs fine in FireFox. I can see the newly created table rows
and everything looks fine on the page. In Internet Explorer, I don't
see any changes to the page after the new nodes are added.

I traced into the code using Microsoft's debugger. If I walk the child
nodes of the target table using the Immediate window (same as Mozilla
debugger's interactive window), I do see the newly created elements.
If I inspect the innerHTML of the new nodes I do see the HTML code in
proper format. But the page does not show the new elements at all.

Is this an Internet Explorer oddity and if so, what can I do to get
things working?


Don't use setAttribute with IE, set the property directly:

tdLinkNum.width="10%"; instead of:
tdLinkNum.setAttribute("WIDTH", "10%");

Also, IE requires you to have a TBODY in your code, so you have to
create one (or hard code it).

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 1 '06 #2
ro************@gmail.com wrote:
I have an AJAX driven page where I dynamically add rows to a known
table on the page, based on the return document from the AJAX call,
using DOM node methods (except for a small snippet of code, see below)
. The code I use to do that is shown below.

The code runs fine in FireFox. I can see the newly created table rows
and everything looks fine on the page. In Internet Explorer, I don't
see any changes to the page after the new nodes are added.
Don't use innerHTML to modify a table. According to Microsoft's
documentation, you shouldn't use innerHTML on any table element other than
a TD.

<URL:http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/innerhtml.asp>
Secondly, IE requires that TR elements added to a table are added to a
tbody. There are two fixes for that: use insertRow, which adds rows
directly to the table, or find the TBODY element and add your rows to that.

You don't need to explicitly create a tbody. It is a mandatory element in
a table, but the tags are optional. When you create your table below, a
tbody is created automatically.

I traced into the code using Microsoft's debugger. If I walk the child
nodes of the target table using the Immediate window (same as Mozilla
debugger's interactive window), I do see the newly created elements.
If I inspect the innerHTML of the new nodes I do see the HTML code in
proper format. But the page does not show the new elements at all.

Is this an Internet Explorer oddity and if so, what can I do to get
things working?

Thanks.

--------------------------

// Append the contents of TABLE in the "show links" DIV to the new
link.
// Helper function to build the mini table for the submitting user
name and notes.
function getShowLinkMiniTable(userName, notes)
{
var tblHtml =
"<TABLE ALIGN=LEFT VALIGN=TOP>\n" +
" <TR>\n" +
" <TD WIDTH=\"30%\">\n" +
" <P><b>Submitter:</b> " + userName + "</P>\n" +
" </TD>\n" +
" </TR>\n" +
" <TR>\n" +
" <TD WIDTH=\"70%\">\n" +
" <P><b>Notes:</b> " + notes + "</P>\n" +
" </TD>\n" +
" </TR>\n" +
"</TABLE>\n";

return tblHtml;
} // function getShowLinkMiniTable()
function appendShowLink(linkNum, linkHtml, userName, notes)
{
var tblShowLinks = document.getElementById("tblShowLinks");
Guessing that tblShowLinks is now a reference to the table...

if (!tblShowLinks)
{
alert("(appendShowLink) Unable to find the show links table.");
return;
}

// New row.
var trNew = document.createElement("TR");
Change this line to:

var trNew = tblShowLinks.insertRow(-1);

trNew is now a reference to a new row in your table. The row will be
inserted at the index provided, -1 inserts it as the last row.

// New cell - link num.
var pLinkNum = document.createElement("P");
pLinkNum.innerHTML = "" + linkNum;

var tdLinkNum = document.createElement("TD");
tdLinkNum.setAttribute("WIDTH", "10%");
tdLinkNum.setAttribute("VALIGN", "TOP");
// tdLinkNum.setAttribute("innerHTML", "" . linkNum);
tdLinkNum.appendChild(pLinkNum);
You can shorten your code using insertCell:

var tdLinkNum = trNew.insertCell(-1);
tdLinkNum.style.width = "10%";
tdLinkNum.style.verticalAlign = "top";

Cell is already appended to the tr by insertCell, so no need for
appendChild. Check out the DOM HTMLTableElement and related interfaces:

<URL:http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-64060425>

summarised and collated here:

<URL:http://developer.mozilla.org/en/docs/DOM:table#HTML_Form_Element_Interface>
They were introduced with DOM 1 and are very widely supported.

// New cell - link html.
var pLinkHtml = document.createElement("P");
pLinkHtml.innerHTML = linkHtml;

var tdLinkHtml = document.createElement("TD");
tdLinkHtml.setAttribute("WIDTH", "20%");
// tdLinkHtml.setAttribute("innerHTML", linkHtml);
tdLinkHtml.appendChild(pLinkHtml);

var tdUserMiniTable = document.createElement("TD");
tdUserMiniTable.setAttribute("WIDTH", "70%");
tdUserMiniTable.setAttribute("VALIGN", "TOP");

tdUserMiniTable.innerHTML = getShowLinkMiniTable(userName, notes);
// tdUserMiniTable.innerHTML = "<p>hello</p>";

// Add the cells to the row.
trNew.appendChild(tdLinkNum);
trNew.appendChild(tdUserMiniTable);
trNew.appendChild(tdLinkHtml);

// Add the new table data element to the table.
tblShowLinks.appendChild(trNew);
Alternatively, get the tbody here (not needed if insertRow has been used,
the appendChild line can be deleted):

var tbody = tblShowLinks.getElementsByTagName('tbody')[0];
tbody.appendChild(trNew);
} // function setShowLinks()

--
Rob
Apr 2 '06 #3
Thank you both for your excellent replies, that's exactly what I needed.

Apr 4 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Anna | last post by:
Hi all. I have a javascript function that loops throught all text boxes inside a form: var elems = document.formName.elements; for(i = 0; i < elems.length; i++) { if(elems.type &&...
8
by: Jukka K. Korpela | last post by:
I just noticed that most browsers render <table border="1"><tr><td><p>foo</p></td></tr></table> the same way as <table border="1"><tr><td>foo</td></tr></table> That is, they ignore the p...
6
by: glin | last post by:
Hi all, I have a javascript that create table and field elements dynamically in a hidden div, and when I trigger to display the div, the elements I created in div does not show in ie, but it...
11
by: Christopher Benson-Manica | last post by:
Can I make a <textarea> and an <input type="checkbox"> invisible? -- Christopher Benson-Manica | I *should* know what I'm talking about - if I ataru(at)cyberspace.org | don't, I need to...
2
by: Jason S | last post by:
Is there a list of which browsers allow DHTML to create new <img> elements? e.g. var img = document.createElement('img'); img.src = '...some image source path...'; I've been working on a...
2
by: Noah Sussman | last post by:
Hello, I am writing a function to reposition an element based on whether one of its edges is outside the visible area of the browser window (the code is below). My client has asked for code...
11
by: shankwheat | last post by:
I have a function which passes text from txtdebt to debtsbox which works fine. However, I want to add code which examines the value of debtsbox and if any of the values the user entered contain the...
7
by: mavigozler | last post by:
IE7 does not appear to set an event on contained text inside SPAN elements whose 'onclick', 'onmouseover', and 'onmouseout' events, defying the HTML recommendation. Firefox appears to conform. ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.