Synchronizing Ajax Toolkit Calendar Extender - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T10:17:41Zhttp://stackoverflow.com/feeds/question/496509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/496509/synchronizing-ajax-toolkit-calendar-extender0Synchronizing Ajax Toolkit Calendar Extender jckeyes2009-01-30T17:59:12Z2009-01-30T19:12:19Z
<p>I have two Ajax Toolkit calendar extenders. One of them is a start date and the other is the corresponding end date. What I would like to happen is when a date is selected in the Start calendar the End calendar will jump to that date. This sounds pretty simple but I have been having a hard time getting it to happen. </p>
<p>Someone put me out of my misery... What would be the way to accomplish this?</p>
http://stackoverflow.com/questions/496509/synchronizing-ajax-toolkit-calendar-extender/496557#4965571Answer by jmein for Synchronizing Ajax Toolkit Calendar Extender jmein2009-01-30T18:11:58Z2009-01-30T19:12:19Z<p>here you go this worked for me</p>
<pre><code><asp:TextBox runat="server" ID="txt1" OnTextChanged="txt1_TextChanged" AutoPostBack="true"></asp:TextBox>
<ajaxToolkit:CalendarExtender runat="server" ID="cal1" TargetControlID="txt1"></ajaxToolkit:CalendarExtender>
<asp:TextBox runat="server" ID="txt2"></asp:TextBox>
<ajaxToolkit:CalendarExtender runat="server" ID="cal2" TargetControlID="txt2"></ajaxToolkit:CalendarExtender>
protected void txt1_TextChanged(object sender, EventArgs e)
{
cal2.SelectedDate = Convert.ToDateTime(txt1.Text);
}
</code></pre>
<p>or you can do this through javascript I would recommend using jquery though to find the textboxes instead of using straight javascript</p>
<pre><code><asp:TextBox runat="server" ID="txt1" onchange="SetEndDate()"></asp:TextBox>
<ajaxToolkit:CalendarExtender runat="server" ID="cal1" TargetControlID="txt1"></ajaxToolkit:CalendarExtender>
<asp:TextBox runat="server" ID="txt2"></asp:TextBox>
<ajaxToolkit:CalendarExtender runat="server" ID="cal2" TargetControlID="txt2"></ajaxToolkit:CalendarExtender>
<script type="text/javascript">
function SetEndDate()
{
var txt1 = document.getElementById("txt1");
var txt2 = document.getElementById("txt2");
txt2.value = txt1.value
}
</script>
</code></pre>