 |
|
 |
Download takes you to site with popups not code. Missing files from backup site download.
|
|
|
|
 |
|
 |
"Not working with Master Page" seems to be a common problem that everybody else are also facing. I found a work around though it may not be optimizable but working
- Place another hidden text control next to the calendar control. - Onclick of calendar control set the value of selected date into the hidden text control. - Use the hidden text control to set the selected date of calendar control on post back.
Note: The ID of textbox in which the selected date is shown in calendar control is always concatenation of "txt" and calendarcontroluniqueid with all "$" sign replaced with "a".
In Aspx
<script>
function SetSelectedDate(calendarTxtId,hiddenTxtId) { document.getElementById(hiddenTxtId).value=document.getElementById(calendarTxtId).value; }
</script>
<input type='hidden' id='txtHidden' runat="'server'" />
In Code behind
mycalendarControl.Attributes.Add("OnClick","SetSelectedDate('txt" + mycalendarControl.UniqueId.Replace("$","a") + "','" + txtHidden.ClientId + "');");
if(txtHidden.Value.Length>0) { mycalendarControl.SelectedDate=Convert.ToDateTime(txtHidden.Value); }
|
|
|
|
 |
|
 |
Hi..
Date is refreshed to Current Date after POSTBACK in IE ( With Master Page ). Can you help to go forward.
Thanks in advance Kiru
|
|
|
|
 |
|
 |
I am having the same problem. I am using a master page and after the PostBack the DaintyDate control's SelectedDate is set back to original initial date. It loses the date that the user has picked before the PostBack.
Please HELP!
|
|
|
|
 |
|
 |
Did u find any solution for the problem? I'm thinking about options, like to save in session or some control.
|
|
|
|
 |
|
 |
I love this control. It renders great.
When I bind an SQL Date column to the control and then use it in an Update statement however, the column does not get updated. Has anyone used this control as a bound column? Can you help guide me how to use it.
Bob
|
|
|
|
 |
|
 |
No matter what I do when I render the control and change the date, the "Selected Date" does not change. I am sure that I am missing something basic here, but it beats me what it is. It looks straight forward. Can someone please help?
|
|
|
|
 |
|
 |
Are there any changes I need to make to make this work in Safari for windows. Works well on all other browsers
Thanks for a great control
|
|
|
|
 |
|
 |
Hi Lawrence Botley
AWESOME !! ... Great Work
But Control Returns '1/1/0001' when used with Master Page in .net 2.0..
It will helpful if you can fix this for me.
Thanks kiru
|
|
|
|
 |
|
 |
I had that problem. The way to fix is to set your datevalue as DateTime.Now(). Then when the calendar is loaded it will point to the current date.
|
|
|
|
 |
|
 |
For January only.. the day names are two days on?? Seems fine for Feb, Mar etc.
modified on Wednesday, January 09, 2008 7:01:27 AM
|
|
|
|
 |
|
 |
Using "Image and Button Popup" style
situation 1
click on image to right of textbox calendar correctly appears click on "Previous month button" (left black arrow to left of month name) calendar correctly moves to previous month click on "Next month button" (right black arrow to right of month name) calendar incorrectly disappears
situation 2
click on image to right of textbox calendar correctly appears click on "Next month button" (right black arrow to right of month name) calendar correctly moves to next month click on "Previous month button" (left black arrow to left of month name) calendar incorrectly disappears
|
|
|
|
 |
|
 |
Further to both situations above, if you click on Previous Month arrow twice, then click the Next Month arrow twice, the calendar will disappear.
The pattern is that if you click one of the arrows N times, then immediately click the opposite arrow N times, the calendar will disappear.
This will also cause the calendar to disappear:
Previous Previous Previous Next Previous Next Next Next
As will this:
Previous Previous Previous Next Next Previous Previous Next Next Next
I'm using the build that contains lib.js dated 12 Jan 2007.
|
|
|
|
 |
|
 |
Does anyone know where to download the "Update - 27th Feb 2007"?
The link at top of page "Download Source Latest Examples files (recommended)" is not helpful.
|
|
|
|
 |
|
 |
When I make the dropdown version absolutely positioned the month and year selections show elsewhere on screen? I tried putting the control in an absolutely positioned div. That did not help.
|
|
|
|
 |
|
|
 |
|
 |
Hi, I'm also looking for that version. Did you have any lucking locating it? Thanks.
|
|
|
|
 |
|
 |
I found a version here. Not sure which version it is but the daintydate.cs file is dated 09 Oct 2007.
http://rs16.rapidshare.com/files/85380868/DaintyDate.zip
|
|
|
|
 |
|
|
 |
|
 |
Hey guys, can anyone reply to my query ...
i m stuck and cannot proceed further for using DaintyDate in my master page....
how do i make my dll for changed source code????
I m using Visual Web Developer 2005 , where the given source code does not open...
Any help will be really useful...
Thanks in advance
|
|
|
|
 |
|
 |
Control is pitty cool.... N i have opted to use this control in my project...
I m facing a issue.... it doesnt work fine when used with Master page..
I went through entire forum and found the code to change in DaintyDate.cs file..... but could u tell me wat shud be done next.....
I think i need to rebuild the dll file and use it in my project..
can u suggest me the way to do this???
Please its very urgent ....
Thanks in advance
|
|
|
|
 |
|
 |
I am also getting problem .Date is selected in control but It shows default date on server side??
|
|
|
|
 |
|
 |
I have a "Request is not available in this context" when using the DaintyDate as an ascx and trying to retrieve the selected date.
I modified the Text property of the DaintyDate like this and now, everything work fine.
if (base.Page.IsPostBack) base.Page.Request.Form[this.GetInstanceID()]; return base.ViewState["txtValue"] as String ?? String.Empty;
Modified code
if (base.Page.IsPostBack) return HttpContext.Current.Request.Form[this.GetInstanceID()]; return base.ViewState["txtValue"] as String ?? String.Empty;
|
|
|
|
 |
|
 |
Is the other link is up to date ?
|
|
|
|
 |
|
 |
This is exactly what I am looking for.
Thanks friend.
|
|
|
|
 |