Hi Kieran,
The following code example demonstrates how to show the fast navigation popup by default:
<%@ Page Language="C#" %> |
|
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
|
<!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> |
<style type="text/css"> |
.RadCalendarFastNavPopup |
{ |
z-index: 5003 !Important; |
} |
</style> |
</head> |
<body> |
<form id="form1" runat="server"> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<div> |
<script type="text/javascript"> |
function PopupOpening(sender, args) { |
sender.get_calendar()._showMonthYearFastNav(); |
} |
</script> |
<telerik:RadDatePicker ID="RadDatePicker1" runat="server"> |
<ClientEvents OnPopupOpening="PopupOpening" /> |
</telerik:RadDatePicker> |
</div> |
</form> |
</body> |
</html> |
|
All the best,
Plamen
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.