VS2005 Web Panel Control

C

Chicod

I have serveral panels containing text boxes. The panels remain in the
'foreground' to that the text boxes are not accessible...how can I change
this behavior. I have tried repeatedly to 'move to back' but only one panel
at any given time will remain in the 'back'...basically, I cannot get to the
text boxes. I am apparently missing something.

Thanks.
 
N

Nathan Sokalski

It would be very helpful if you posted your code, what you said doesn't give
us much to work with.
 
C

Chicod

sorry...here is the panel that wraps a text box and a checklist...

<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False"></asp:panel>
<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset" MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>
 
C

Chicod

Thanks...but, it did not work...I have tried every combination..I might add
that this behavior is entirely different that the behavior expressed in
VS2003 where the panels served well as 'containers' and the objects were all
easily accessible. But not in VS2005. The consistent behavior is that the
'last' panel to be addressed by ordering it to the back, or setting the wrap,
or... is the only one that works correctly. That is, one and only one behaves
'correctly' at any given build...
--
Chicod


Gustavo Cantero said:
Chicod:
The Panel must "wrap" the other controls. Try with this:

<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False">

<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset"
MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>


Gustavo A. Cantero
CEO - Scientia® Soluciones Informáticas
MCP - MCSD - MCTS
http://www.scientia.com.ar
http://www.programandoamedianoche.com
http://foro.scientia.com.ar



-----Mensaje original-----
De: Chicod [mailto:[email protected]]
Expuesto a las: Miércoles, 08 de Octubre de 2008 11:11 p.m.
Expuesto en: microsoft.public.dotnet.framework.aspnet.webcontrols
Conversación: VS2005 Web Panel Control
Asunto: Re: VS2005 Web Panel Control

sorry...here is the panel that wraps a text box and a checklist...

<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False"></asp:panel>
<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset"
MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>
--
Chicod


Nathan Sokalski said:
It would be very helpful if you posted your code, what you said doesn't
give
us much to work with.
 
N

Nathan Sokalski

Why do you specify both the Width and Columns properties for the TextBox?
And correct me if I'm wrong, but it looks like you want the TextBox and
RadioButtonList on top of the Panel, so why don't you use relative
positioning for the TextBox and RadioButtonList? When using the CSS left and
top properties, it is best to use position:relative; when you can to avoid
needing to coordinate the coordinates of all elements (in your case, the
only absolutely positioned element would be the Panel). Try some of these
things, and see if they help.
--
Nathan Sokalski
(e-mail address removed)
http://www.nathansokalski.com/

Chicod said:
Thanks...but, it did not work...I have tried every combination..I might
add
that this behavior is entirely different that the behavior expressed in
VS2003 where the panels served well as 'containers' and the objects were
all
easily accessible. But not in VS2005. The consistent behavior is that the
'last' panel to be addressed by ordering it to the back, or setting the
wrap,
or... is the only one that works correctly. That is, one and only one
behaves
'correctly' at any given build...
--
Chicod


Gustavo Cantero said:
Chicod:
The Panel must "wrap" the other controls. Try with this:

<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False">

<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset"
MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>


Gustavo A. Cantero
CEO - Scientia® Soluciones Informáticas
MCP - MCSD - MCTS
http://www.scientia.com.ar
http://www.programandoamedianoche.com
http://foro.scientia.com.ar



-----Mensaje original-----
De: Chicod [mailto:[email protected]]
Expuesto a las: Miércoles, 08 de Octubre de 2008 11:11 p.m.
Expuesto en: microsoft.public.dotnet.framework.aspnet.webcontrols
Conversación: VS2005 Web Panel Control
Asunto: Re: VS2005 Web Panel Control

sorry...here is the panel that wraps a text box and a checklist...

<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False"></asp:panel>
<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset"
MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>
--
Chicod


Nathan Sokalski said:
It would be very helpful if you posted your code, what you said doesn't
give
us much to work with.
--
Nathan Sokalski
(e-mail address removed)
http://www.nathansokalski.com/

I have serveral panels containing text boxes. The panels remain in the
'foreground' to that the text boxes are not accessible...how can I
change
this behavior. I have tried repeatedly to 'move to back' but only one
panel
at any given time will remain in the 'back'...basically, I cannot get
to
the
text boxes. I am apparently missing something.

Thanks.
 
S

Stan

Thanks...but, it did not work...I have tried every combination..I might add
that this behavior is entirely different that the behavior expressed in
VS2003 where the panels served well as 'containers' and the objects were all
easily accessible. But not in VS2005. The consistent behavior is that the
'last' panel to be addressed by ordering it to the back, or setting the wrap,
or... is the only one that works correctly. That is, one and only one behaves
'correctly' at any given build...
--
Chicod



Gustavo Cantero said:
Chicod:
   The Panel must "wrap" the other controls.  Try with this:
<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False">
<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset"
MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>
Gustavo A. Cantero
CEO - Scientia® Soluciones Informáticas
MCP - MCSD - MCTS
http://www.scientia.com.ar
http://www.programandoamedianoche.com
http://foro.scientia.com.ar
-----Mensaje original-----
De: Chicod [mailto:[email protected]]
Expuesto a las: Miércoles, 08 de Octubre de 2008 11:11 p.m.
Expuesto en: microsoft.public.dotnet.framework.aspnet.webcontrols
Conversación: VS2005 Web Panel Control
Asunto: Re: VS2005 Web Panel Control
sorry...here is the panel that wraps a text box and a checklist...
<asp:panel id="TechPanel" style="Z-INDEX: 129; LEFT: 384px; POSITION:
absolute; TOP: 480px"
runat="server" Height="88px" Width="312px" BorderStyle="Groove"
BorderWidth="2px" HorizontalAlign="Left" Wrap="False"></asp:panel>
<asp:textbox id="TechBems" style="Z-INDEX: 124; LEFT: 496px; POSITION:
absolute; TOP: 512px"
runat="server" Height="13px" Width="72px" BorderStyle="Inset"
MaxLength="8"
BorderWidth="2px" Columns="8"></asp:textbox>
<asp:radiobuttonlist id="TechList" style="Z-INDEX: 128; LEFT: 576px;
POSITION: absolute; TOP: 504px"
runat="server" Height="40px" Width="80px" Font-Bold="True"
RepeatLayout="Flow">
<asp:ListItem Value="R" Selected="True">Requestor</asp:ListItem>
<asp:ListItem Value="TEC">Technician</asp:ListItem>
</asp:radiobuttonlist>
"Nathan Sokalski" wrote:

- Show quoted text -

Have you tried editing the Z-INDEX attributes. They control which
overlays which.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top