table is invisible in ie6

table is invisible in ie6

prad123prad123 Posts: 2Questions: 0Answers: 0
edited February 2011 in General
in ie6 i have 3 tables on the same page, one of the table is not visible when the page loads, however when I resize the window, the table comes backup. This happens only in ie6, works fine with ie8 and other browsers.
Below is the script that populates the datatable.
[code]

jQuery(document).ready(function() {
if(eval(${viewState.jsonData["TableData"]}) != null) {
var dataExample = eval(${viewState.jsonData["TableData"]});
var dataHeaders = eval(${viewState.jsonHeaders["TableHeaders"]});
function CreateTableView(objArray, enableHeader) {
if (enableHeader === undefined) {
enableHeader = true; //default enable headers
}
var str = '';
if (enableHeader) {
str += '';
for (var i=0 ; i

Replies

  • allanallan Posts: 63,516Questions: 1Answers: 10,472 Site admin
    I don't actually see anything in the code that would show / hide a table - is it done using CSS display:none, or is it something that is unintentional? Can you post a link please?

    Allan
  • prad123prad123 Posts: 2Questions: 0Answers: 0
    It is unintentional. We are not doing anything with CSS to display or hide the table.
  • allanallan Posts: 63,516Questions: 1Answers: 10,472 Site admin
    How very odd! :-). Might IE be floating the table off the page somewhere? If you don't include your CSS files (or tag or whatever) is the table visible? It sounds a bit like the IE float cut off bug.

    Allan
This discussion has been closed.