Since upgrading to 2008 Q3, I am getting an error when trying to display a DatePicker via the showPopup method. My DatePicker control is as follows:
<telerik:RadDatePicker ID="dtPckr" runat="server" SharedCalendarID="cal" Width="19px" Height="10px">
<DateInput ID="DtInpt" runat="server" style="display:none;"></DateInput>
<DatePopupButton ToolTip="Calendar" style="display:none;"/>
<ClientEvents OnDateSelected="OnDateSelected" />
</telerik:RadDatePicker>
I have a Span on the page, that upon clicking on it fires off the following javascript:
function togglePopup() {
$find("<%= dtPckr.ClientID %>").showPopup();
}
Upon clicking this, the Telerik code bombs within the ShowPopup function on the following lines since _6 gets set to Null:
_6=this.get__popupImage();
var _7=this.getElementPosition(_6);
I'm not sure if something changed within this release or if my code needs to change?
Thanks, Jeff
<telerik:RadDatePicker ID="dtPckr" runat="server" SharedCalendarID="cal" Width="19px" Height="10px">
<DateInput ID="DtInpt" runat="server" style="display:none;"></DateInput>
<DatePopupButton ToolTip="Calendar" style="display:none;"/>
<ClientEvents OnDateSelected="OnDateSelected" />
</telerik:RadDatePicker>
I have a Span on the page, that upon clicking on it fires off the following javascript:
function togglePopup() {
$find("<%= dtPckr.ClientID %>").showPopup();
}
Upon clicking this, the Telerik code bombs within the ShowPopup function on the following lines since _6 gets set to Null:
_6=this.get__popupImage();
var _7=this.getElementPosition(_6);
I'm not sure if something changed within this release or if my code needs to change?
Thanks, Jeff