Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Ajax calendar extender appears behind dropdown list

Reply
Thread Tools

Ajax calendar extender appears behind dropdown list

 
 
BillE
Guest
Posts: n/a
 
      04-13-2007
Can I make the Ajax calendar extender appear on top of dropdown lists
instead of behind them?

Thanks
Bill


 
Reply With Quote
 
 
 
 
wmain
Guest
Posts: n/a
 
      04-14-2007
On Apr 13, 4:06 pm, "BillE" <bel...@datamti.com> wrote:
> Can I make the Ajax calendar extender appear on top of dropdown lists
> instead of behind them?
>
> Thanks
> Bill


Here is a page using the calendar extender. I've placed a dropdownlist
control and a html select below the associated textbox control. When I
click on the link button to display the calendar it appears to render
over top when I use IE 7 or FireFox 2.

<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<ajaxToolkit:CalendarExtender ID="CalendarExtender1"
runat="server" PopupButtonID="LinkButton1"
TargetControlID="TextBox1">
</ajaxToolkit:CalendarExtender>
<asp:TextBox ID="TextBox1" runat="server"></
asp:TextBox>
<asp:LinkButton ID="LinkButton1"
runat="server">LinkButton</asp:LinkButton><br />
<aspropDownList ID="DropDownList1" runat="server">
<asp:ListItem>0</asp:ListItem>
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
</aspropDownList>
<select id="Select1">
<option selected="selected" value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option></option>
<option></option>
<option></option>
</select>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>

 
Reply With Quote
 
 
 
 
Larry Bud
Guest
Posts: n/a
 
      04-15-2007
On Apr 14, 1:11 am, "wmain" <mainmeis...@gmail.com> wrote:
> On Apr 13, 4:06 pm, "BillE" <bel...@datamti.com> wrote:
>
> > Can I make the Ajax calendar extender appear on top of dropdown lists
> > instead of behind them?

>
> > Thanks
> > Bill

>
> Here is a page using the calendar extender. I've placed a dropdownlist
> control and a html select below the associated textbox control. When I
> click on the link button to display the calendar it appears to render
> over top when I use IE 7 or FireFox 2.


It's an ie6 bug. Divs appear behind certain controls.

There's workaround, and usually it involves creating an iframe in the
exact position of the div.

 
Reply With Quote
 
BillE
Guest
Posts: n/a
 
      04-16-2007
Thanks


"Larry Bud" <> wrote in message
news: oups.com...
> On Apr 14, 1:11 am, "wmain" <mainmeis...@gmail.com> wrote:
>> On Apr 13, 4:06 pm, "BillE" <bel...@datamti.com> wrote:
>>
>> > Can I make the Ajax calendar extender appear on top of dropdown lists
>> > instead of behind them?

>>
>> > Thanks
>> > Bill

>>
>> Here is a page using the calendar extender. I've placed a dropdownlist
>> control and a html select below the associated textbox control. When I
>> click on the link button to display the calendar it appears to render
>> over top when I use IE 7 or FireFox 2.

>
> It's an ie6 bug. Divs appear behind certain controls.
>
> There's workaround, and usually it involves creating an iframe in the
> exact position of the div.
>



 
Reply With Quote
 
Thomas Hansen
Guest
Posts: n/a
 
      04-18-2007
On Apr 13, 10:06 pm, "BillE" <bel...@datamti.com> wrote:
> Can I make the Ajax calendar extender appear on top of dropdown lists
> instead of behind them?


Yup, upgrade to IE7 or ditch IE and use FireFox...

Btw, have you tried our DateTimePicker instead...??
http://ajaxwidgets.com/AllControlsSa...imePicker.aspx
(click the blu "V")

..t

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
AJAX - Calendar Extender Format pvong ASP .Net 0 08-01-2008 01:46 PM
AJAX Calendar extender issue Abhilash ASP .Net 2 06-14-2008 01:13 AM
Ajax calendar extender behavior E L ASP .Net Web Controls 0 07-10-2007 02:37 PM
Problems using AJAX Control Toolkit Dropdown Extender w/ Gridview William Youngman ASP .Net 2 03-19-2007 06:18 PM
AJAX Dropdown extender & Gridview William Youngman ASP .Net 1 03-12-2007 03:21 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57