Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Elcid32

    Table Column Alignment

    I did make sure that both tables contained the cellspacing and cellpadding - still didn't work. I think I may have found a fix: table { width: 0; table-layout: fixed; } <table cellspacing="0" cellpadding="2"> <tr > <th style="width: 100px" class="vmGridCelHdr">Header...
  2. Elcid32

    Table Column Alignment

    ClFlava: Thanks for the reply. I need to keep the table width out out the css structre becuase the code is part of a function that will be called by many tables, all with varying widths. I added the "table-layout: fixed" and it threw off the borders even more. Perpelexing. Shawn
  3. Elcid32

    Table Column Alignment

    I just threw this together but if you look at column 4 and 5, the right borders are not lining up with the borders in the header table. In some of my tables, the borders are off quite a bit. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <style> td,tr,table...
  4. Elcid32

    Table Column Alignment

    Clflava: The code I provided is not usable? It is the code I am using to build my tables.
  5. Elcid32

    Table Column Alignment

    The first code segment builds the table header: this.buildHeadr = function(){ var bdyDiv, tblDiv, tblObj, tblBdy, tblRow, tblCol, tblCel,tblTxt; bdyDiv = document.getElementById(this.parentdiv); tblDiv = this.registerDiv("vmGridHdr"); tblDiv.className="vmGridDivHdr"...
  6. Elcid32

    Table Column Alignment

    This has been driving me nuts all day and I cant figure out what's going on. I have created two tables one is wrapped in a DIV and used as a header. The second is also wrapped in a DIV which allows me to scroll (hence two tables). The second table is butted up against the bottom of the first...
  7. Elcid32

    Table Column Alignment

    Hello Forum: This has been driving me nuts all day and I cant figure out what's going on. I have created two tables one is wrapped in a DIV and used as a header. The second is also wrapped in a DIV which allows me to scroll (hence two tables). The second table is butted up against the bottom...
  8. Elcid32

    Web Application

    Hello Forum: I am developing a web application that fires from a link on my website. The link instructs the application to open in a window (window.open()) with all of the tool bars turned off, etc. My question is: is there a way to place this link on a desktop so that it will run without...
  9. Elcid32

    Overriding A Function

    Thank you both for your responses - I appreciate the help. Shawn
  10. Elcid32

    Overriding A Function

    Hello Fourm! I have a question for ya. Is it possible to redefine a function in Javascript? For example: function myTest(){ this.showAlert = function(){ alert('Show Me!') } this.callAlert = function(){ this.showAlert(); } } test = new myTest; test.showAlert = function(){...

Part and Inventory Search

Back
Top