I have a page with two raddatepickers. Both have ClientIDMode="Static".
Clicking the calendar icon next to RadDatePicker1 pops up the calendar aligned to RadDatePicker2 and if a date is selected RadDatePicker2 is filled in. The calendar never pops up when clicking the calendar icon next to
RadDatePicker2.
I'm I doing something wrong?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="datepicker.aspx.vb" Inherits="tests_datepicker" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager runat="server" ID="rcm"></telerik:RadScriptManager> <telerik:RadDatePicker runat="server" ID="RadDatePicker1" ClientIDMode="Static" /> <telerik:RadDatePicker runat="server" ID="RadDatePicker2" ClientIDMode="Static" /> </div> </form></body></html>Clicking the calendar icon next to RadDatePicker1 pops up the calendar aligned to RadDatePicker2 and if a date is selected RadDatePicker2 is filled in. The calendar never pops up when clicking the calendar icon next to
RadDatePicker2.
I'm I doing something wrong?