or
| <div runat="server" id="ContainerDiv"> |
| <telerik:RadComboBox ID="cbYear" runat="server" Height="200px" Width="60px" |
| DropDownWidth="60px" |
| OnClientLoad="cbYear_Loaded" |
| OnClientSelectedIndexChanged="cbYear_SelectedIndexChanged" |
| OnClientTextChange="cb_OnClientTextChange" |
| CausesValidation="false" MarkFirstMatch="false" AllowCustomText="false" > |
| </telerik:RadComboBox> |
| <telerik:RadComboBox ID="cbMonth" runat="server" Height="200px" Width="60px" |
| DropDownWidth="60px" |
| OnClientSelectedIndexChanged="cbMonth_SelectedIndexChanged" |
| OnClientTextChange="cb_OnClientTextChange" |
| CausesValidation="false" MarkFirstMatch="false" AllowCustomText="false" > |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="00" /> |
| </Items> |
| </telerik:RadComboBox> |
| <telerik:RadComboBox ID="cbDay" runat="server" Height="200px" Width="60px" |
| DropDownWidth="60px" HighlightTemplatedItems="true" |
| EnableLoadOnDemand="false" CausesValidation="false" |
| OnClientSelectedIndexChanged="cbDay_SelectedIndexChanged" |
| OnClientTextChange="cb_OnClientTextChange" |
| OnClientLoad="cbDay_Loaded" |
| MarkFirstMatch="false" AllowCustomText="false"> |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="00" /> |
| </Items> |
| </telerik:RadComboBox> |
| </div> |

Hey, I'm looking for some advice on how to use History Points with the Rad ASPNET Ajax 2010 controls.
I'm currently saving history points no problem. I'm lacking the code to "restore" a history point. I find that the Navigate event on the script manager doesn't seem to fire when using the forward/back broswer buttons. If I turn the ajax off on the panel... the event fires. Is there a way to get the script manager Navigate event to fire inside of an ajaxified radajaxpanel? Thanks in advance for any help.
| <telerik:radscriptmanager runat="server" EnableHistory="True" ID="ScriptManager"></telerik:radscriptmanager> |
| <telerik:radajaxpanel runat="server" LoadingPanelID="LoadingPanel" ID="AjaxPanel" Wrap="False"> |
| ........... OBJECTS IN HERE ................. |
| </telerik:RadAjaxPanel> |
| Protected Sub ScriptManager_Navigate(ByVal sender As Object, ByVal e As System.Web.UI.HistoryEventArgs) Handles ScriptManager.Navigate |
| Page.Title = "TEST" |
| End Sub |
