TH header not aligning with TD cells in IE

TH header not aligning with TD cells in IE

WebGirly3WebGirly3 Posts: 3Questions: 0Answers: 0
edited September 2011 in FixedHeader
http://www.gulfwebservices.com/clients/ccr/furnished/colonial/index.html

My header th cells are not aligning with my td cells in Internet Explorer. I have played around with the CSS for multiple days but I cannot figure out what the solution is?? I turned off sorting and the problem got even worse; the gap at the end was one cell larger than the row below! I don't know what to do or how to fix it because I have tried everything that I would know how to do and I've spent countless hours on what seems to be a silly problem.

I've searched the forums high and low but nothing addresses my specific problem. I have made very little modifications to the tables. In fact, before I made ANY mods, I just entered my data and this problem started happening. Can somebody that knows more about this table please help me????

Replies

  • WebGirly3WebGirly3 Posts: 3Questions: 0Answers: 0
    Can somebody tell me if they also get unaligned cells in IE at this link:
    http://www.gulfwebservices.com/clients/ccr/furnished/colonial/index.html

    Or is it just me?
  • leahfooleahfoo Posts: 4Questions: 0Answers: 0
    nope I have same problem with my th td not aligning thinking it has something to do with colspan
  • allanallan Posts: 61,443Questions: 1Answers: 10,053 Site admin
    @leahfoo: I've been helping WebGirly3 offline as it was a fairly complicated issue. Do you have a link as well? And what browser are you seeing this in?

    Allan
  • leahfooleahfoo Posts: 4Questions: 0Answers: 0
    This problem is fixed....took out the sort on every row since it was unnecessary in my application and this made the table render correctly. However, my next problem is this.....when I re-render my table based on a check box, I lose all the tr shading? Since some of these tables can have 265 different lines, I really need to have this back. If I refresh the page, line shading returns and on first time in it is fine regardless if check boxxx is on or off first time in. have tried lots of oTable functions and even a simple soft and hard reload witJavaScripttt history.go(0) and location.reload() respectively but no go. Ideas would be great!
  • leahfooleahfoo Posts: 4Questions: 0Answers: 0
    ok its was a stack overflow limiting table to 15 fixed this.
  • leahfooleahfoo Posts: 4Questions: 0Answers: 0
    script stack space quota is exhausted
    http://local.procheckauto.com/javascript/jquery.js
    Line 21

    New error above to get array in i am
    async: false,
    url:"/test/openAssignmentQuery.jsp",
    type: "post",
    data: ({
    "assignmentsCheckbox": jQuery("#assignmentsCheckbox").is (":checked")

    }),
    dataType: "html",
    success: function(data) {
    alert("started");

    oTable.fnClearTable();
    var jData = jQuery(data);
    jData.find('tr').each(function(i) {
    var tempArray = new Array();

    jQuery(this).find('td').each(function(i) {
    tempArray.push(jQuery(this).text());
    })
    oTable.fnAddData(tempArray);

    anything on the query result set not limited to 100 gives this error. Ideas / work arounds
  • KshuKshu Posts: 2Questions: 0Answers: 0
    I still have this problem when the content of is wrapped around and more than one lines.

    I can mail a small example if needed.
This discussion has been closed.