472,789 Members | 1,083 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,789 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 3134
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: Rina0 | last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.