473,388 Members | 1,335 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,388 software developers and data experts.

ColGroup for a table element gets lost when the table element is made visible/invisible

TS
I am losing my colgroup html element of a table that i toggle back and forth
of being visible=true/false. is there any workaround since the rendered html
doesn't contain it even though it has not been explicitely been made
invisible?

note also that even when the table is made visible=true, colgroup still
doesn't show up
Aug 9 '07 #1
4 3193
What is the meaning of colgroup with visible=false? What exactly do you want
to achieve? Just note that server controls with visible=false don't render
to the client and don't come back in postbacks.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
"TS" <ma**********@nospam.nospamwrote in message
news:%2********************@TK2MSFTNGP06.phx.gbl.. .
I am losing my colgroup html element of a table that i toggle back and
forth
of being visible=true/false. is there any workaround since the rendered
html
doesn't contain it even though it has not been explicitely been made
invisible?

note also that even when the table is made visible=true, colgroup still
doesn't show up


Aug 9 '07 #2
Hi TS,

From your description, you're using some ASP.NET Table control in aspx
page(is it asp:Table or html table control?) and you found that the
<colgroupdefined in table will not display after you've ever set Table
control's Visible to "false" ,correct?

As for the <colgroupsince it is html snippet, how did you insert into the
server control? Are you using the <asp:Tableserver control or <table
runat="server" html server control? Based on my experience, it is
recommended to use html server control if you want to deal with some pure
html fragment or some html specific attrribute or style settings on the
control. Also, for "Visible" property, as "Eliyahu" said, if you set server
control's "Visible" to "false", ASP.NET won't render it in the output html.
So I suggest you consider use the css style "display" attribute to hide a
control. e.g.

===============
<table id="tb1" runat="server" style="display:none">
<colgroup></colgroup>
<colgroup style="background-color:Yellow"></colgroup>
<tr>

<td>aaaa</td>
<td>bbbb</td>
</tr>
<tr>

<td>cccc</td>
<td>dddd</td>
</tr>
</table>
===============

You can set html table control's "display" style to "none" and change it in
either server-side ASP.NET code or client-side javascript code.

Of course, if convenient, you can post some code snippet so that we can
also have a look into it. If there is anything we missed, please feel free
to post here also.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

Aug 10 '07 #3
TS
hi, I am using html table control with runat=server. Actually the issue is
when i first set the table to invisible, then to visible - the colgroup
doesn't appear. If i wrap the table inside another container control
(another html table) and set it to invisible then visible it works fine.
seems like the colgroup element gets dropped.

"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message
news:Q7****************@TK2MSFTNGHUB02.phx.gbl...
Hi TS,

From your description, you're using some ASP.NET Table control in aspx
page(is it asp:Table or html table control?) and you found that the
<colgroupdefined in table will not display after you've ever set Table
control's Visible to "false" ,correct?

As for the <colgroupsince it is html snippet, how did you insert into
the
server control? Are you using the <asp:Tableserver control or <table
runat="server" html server control? Based on my experience, it is
recommended to use html server control if you want to deal with some pure
html fragment or some html specific attrribute or style settings on the
control. Also, for "Visible" property, as "Eliyahu" said, if you set
server
control's "Visible" to "false", ASP.NET won't render it in the output
html.
So I suggest you consider use the css style "display" attribute to hide a
control. e.g.

===============
<table id="tb1" runat="server" style="display:none">
<colgroup></colgroup>
<colgroup style="background-color:Yellow"></colgroup>
<tr>

<td>aaaa</td>
<td>bbbb</td>
</tr>
<tr>

<td>cccc</td>
<td>dddd</td>
</tr>
</table>
===============

You can set html table control's "display" style to "none" and change it
in
either server-side ASP.NET code or client-side javascript code.

Of course, if convenient, you can post some code snippet so that we can
also have a look into it. If there is anything we missed, please feel free
to post here also.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
>


Aug 13 '07 #4
Hi TS,

Does the further information helps you some? If there is still anything
need help, please feel free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

Aug 16 '07 #5

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

Similar topics

1
by: Daniel Haude | last post by:
Me again! This time I'd like to prevent an entire column of a table to have no word-wrapping. So I defined this class in the style sheet: ..nobr { white-space: nowrap; } When I define...
10
by: john T | last post by:
Is there anyway to vertically center a html table using css in such a way it does not alter the html table. When I tryied it just screws up.
1
by: liberty | last post by:
Hi, I have looked everywhere to try and solve my problem-- looked at W3C DOM Compatibility charts, read articles, tried debuggers, and still my script is not working. The problem I have is this. ...
1
by: andrewkooi | last post by:
Greetings, I have 16 links for my horizontal menu navigation as you can see in my website www.singakad.com and at present, I am using a table and javascript for this menu. Is it possible for...
2
by: Jure Erznoznik | last post by:
I made a table that shows 20 rows of a table at a time. When the user presses down or up arrow, the table will scroll as necessary filling new rows. But I have a problem with the following code...
0
by: aeshtry | last post by:
Hello dear friends I have an urgent question. Would you please give me your professional idea? I have an html table containing the ASP.Net validation summary and an ASP.Net label control. The...
33
by: David Stone | last post by:
Been trying to specify text alignment within specific columns in an html 4 strict page. According to the w3c specs, <TABLE border="1"> <COLGROUP> <COL> <COL align="char" char=".">...
36
by: Roedy Green | last post by:
The only browser I have encountered that supports <colgroup><col class="behold"></colgroup> to apply a CSS style to a whole column, is Microsoft Internet Explorer. I have been told it SHOULD NOT...
2
by: PrakashN | last post by:
Hi, By default Div element is invisible. Clicking on label it made as visible. i have textbox fields in div element.. while server side validation i want to make div element as visible.. but in...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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?
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.