calendarextender

[AjaxControlToolkit] How to bind extenders to controls on clientside

I have some dynamically created inputs which are not server-side controls. I want to relate them to some CalendarExtender and MaskedEditExtender on the clientside. Is there a way to do that? ...

ASP Ajax Calendar Extender and displaying time

I am using the Ajax Control Toolkit Calendar Extender control. In some fields though I want to display the time along with the date. I have tried just setting the Format to "dd/MM/yyyy hh:mm:ss" but the time section gets wiped off. If the user wants to change the time section they can do it manually, the calendar drop down is only used f...

Why is my CalendarExtender getting overlapped when rendered?

I'm working on a .NET web application and I'm using a CalendarExtender control within it to have the user specify a date. For some reason, when I click the icon to display the calendar, the background seems to be transparent, shown below: I'm using the extender on other pages and do not run into this issue. I'm not sure if it is wort...

asp.net ajax calendar extender (in updatepanel) causes wrapping

Here's a simplified version of my page: <asp:UpdatePanel runat="server" ID="dateUpdatePanel" RenderMode="Inline"> <ContentTemplate> <asp:Label runat="server" ID="lblDateFrom" Text="From:" /> <asp:TextBox runat="server" ID="txtDateFrom" /> <asp:ImageButton runat="server" ID="cmdDateFrom" ImageUrl="~/images/calendar.jpeg" />...

ASP.NET - Ajax Calendar Extender issue

I am using AJAX calendar extender.Everything is works fine on date selection from pop up image option but when I dont select a date and click outside on the page (click on button "Run report"),calender remains poped up,it doesn't hide.It hides only when date is selected.Is there any workaround for this? ...

Ajax Control Toolkit Date Picker - Is it possible to not have to select the day?

So I can set the date format on the Calendar Extender to it displays just the month, but you would still have to select the Year, then the Month, then the Day. I would like to just select the Year, then the Month. <cc2:CalendarExtender ID="DateOfReleaseCalendarExtender" runat="server" TargetControlID="DateOfReleaseTextBox" ...

.net Ajax calendarExtender cuts of saturday's in IE7 (works fine in firefox)

I was having this problem in IE7 where the saturdays appear to be missing from the calendar. It displays fine in Firefox and a few people have suggested that it could be my other stylesheets messing it up so i am now using a custom calendar CSS theme and i'm still having the same problem. Any ideas? is there a known bug with the ajax to...

Disable previous Dates in ajaxToolkit CalendarExtender

How to disable previous dates while using in ajaxToolkit CalendarExtender ...

CalendarExtender Change date with Javascript

I have a CalendarExtender control on my page and sometimes have to change the date to the next occuring Sunday. I'm currently using the OnClientDateSelectionChanged property of the control to call a function that will add some days to the date until its Sunday. The problem I'm having is that if I select a Tuesday in my calendar, the tex...

ASP.NET AJAX Toolkit - CalendarExtender is reset on Postback

Hello, I have an ASP.NET page that has two input elements: A TextBox that is ReadOnly. This TextBox is the TargetControl of a CalendarExtender A DropDownList with AutoPostBack=true Here is the code: <table border="0" cellpadding="0" cellspacing="0"> <tr><td colspan="2">Date:</td></tr> <tr><td colspan="2"> <asp:TextBox ID="d...

CalendarExtender Positioning Problem

I am adding a CalendarExtender to a page, using the default styles. When I click the calendar button to trigger the calendar popup, the calendar displays normally. However, when I scroll down and click the button again, the calendar's position is not where it should be, as seen below. Why is this occuring and how do I fix it? EDIT:...

how to clear a textbox with calendar extender in javascript?

i have a textbox associated with a calendar extender and a masked edit extender in a asp.net 3.5 project. i would like to clear the texbox when OnBlur...i have tried using the code below but it not working! any ideas guy? document.getElementById('txtDtTo').value =""; ...

Popup a CalendarBehavior from Javascript

Hello, How can I embbed all the scripts needed by the CalendarBehavior in a page, without actually using the server-side control (CalendarExtender). The reason I can't use a server side extender is that I have a page with, possibly, hundreds of Date controls; I want to be able lazy-load the calendars as needed (when the user clicks in t...

Ajax Control Toolkit Calendar doesn't show in IE8 when inside UpdatePanel

Hello, I'm having this problem. When the calendar extender is outside an UpdatePanel, it works perfectly on IE8, however, when inside it, it doesn't show. Anybody having this issue? Thanks. ...

How to reset Calendar Extender for Ajax Control Toolkit to its default value which should be empty string (server side)?

How to reset Calendar Extender for Ajax Control Toolkit to its default value which should be empty string? Reset to be server side. ...

Calendarextender is not displayed with masterpages

Hi! I'm working with masterpages and after reading a lot of answers I can't find why my calendarextender doesn't appear Here is my code http://pastebin.com/m789f935e ...

how to update gridview when changing date in CalendarExtender without having a button ?

Hello. Is it possible to update a gridview when you change a date in a textbox, using CalendarExtender, without having a button ?? I'm not shure what I can use. I use C# in VisualStudio 2008, 3.5 ...

Disable dates in CalendarExtender

Hi! I have two textboxes a calendarextender connected to each of them. The first textbox represents the starting date and the second textbox represents the end date. The problem i have is that if i select a start date i want to disable all dates previous to the start date in the end date calendarextender, and if i select an end date i ...

How to control style of today's cell in asp.net ajax CalendarExtender?

Based on the AjaxControlToolkit API for the CalendarExtender I can control the style of the selected date using: .ajax__calendar_active { background-color:red } And according to the API, I was hoping, that .ajax__calendar_today would allow me to control the style of today's table cell, if show. Unfortunately, this .ajax__calendar_tod...

Microsoft JScript runtime error: Sys.InvalidOperationException: Two components with the same id.

I'm working in ASP .NET dynamic data. In one of my edit controls I wanted to allow the user to add records from a related table to the current page. (Literally, if you are on the orders page, you would be allowed to add a new customer to the system on this page as well, and then associate it with that order). So, I have a DetailsView set...