• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Kind of error on loading a table rows in a web

 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi to all!!
I�m working in a table where at the load of the web must show a table but like i�m using this property :style="visibility:hidden, it�s giving some problems becasue shows the cell spaces but it should not do that.


Just copy/paste in this link if don�t want to open your html editor:http://htmledit.squarefree.com/

I hope someone could help me...
Th
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Your HTML markup is invalid. You really should run it through a validator.

The cell will still take up room because the row before it has three columns. Only way you can make it go away is you have to add a col span to the second column.

Eric
[ November 28, 2008: Message edited by: Eric Pascarello ]
 
Ilh Oleo
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
But with that i would be eliminating the third column that only appears when i choose one option.
Or what do you mean??
 
Ilh Oleo
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Eric Pascarello:
Your HTML markup is invalid. You really should run it through a validator.

The cell will still take up room because the row before it has three columns. Only way you can make it go away is you have to add a col span to the second column.

Eric

[ November 28, 2008: Message edited by: Eric Pascarello ]



Do you refer to put the two radio buttons in one cell and the select inputs in the other cell ?
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I missed this the first time


You do it right in the select tag, but for some reason you inveneted a new attribute for the table cell.



Eric
 
Ilh Oleo
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Eric Pascarello:
I missed this the first time


You do it right in the select tag, but for some reason you inveneted a new attribute for the table cell.



Eric



I don�t know becasue it�s working but i did that becasue i read it on a web page(don�t remember the url).

What i�m trying to do is to make a dynamic table but when the page loads should doesn�t appear the cell that are hidden.
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The second code sample should hide the table cell. Have you tried to make the change and is that how you want it to look?

Eric
 
Ilh Oleo
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Nice!!!
I was missing the difference between these two: <td id="colCiclo" display:none=""> <td id="colCiclo" style="display:none">


thank you
 
They worship nothing. They say it's because nothing lasts forever. Like this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic