Update information. I'm using a usercontrol in DotNetNuke6. I've researched and it seems that its mostly an issue with the radAjaxManager. I'm still haveing problems with putting the manager on the parent page programmatically from the user control. I'm using
Dim manager As New RadAjaxManager()
manager.ID = "RadAjaxManager1"
Me.Page.Form.Controls.Add(manager)
But I don't think it is getting registered. If I can't get this last part to work I'm going to have to redo the entire structure.
As a hack work around a put a page refresh in the function OnClientClose
window.location.reload(true);
It's not very smooth but gets the job done for now. Is there a better way?
Added information: I'm moving this question over to the Ajax forum since it more of an issue with the RadAjaxManager than with the RadGrid. Sorry for the post but I did not see a way to delete.
Thanks
RadGrid1_ItemCommand then it does not show. I know that event is firing since I have a trace log file within the process.
If e.CommandName = RadGrid.InitInsertCommandName Then e.Canceled = True Dim newwindow As Telerik.Web.UI.RadWindow = New Telerik.Web.UI.RadWindow() newwindow.ID = "RadWindow1" newwindow.NavigateUrl = "/portals/0/NewEducation.aspx?RecID=0" newwindow.OnClientClose = "OnClientClose" newwindow.Width = New Unit(650) newwindow.Height = New Unit(580) newwindow.VisibleOnPageLoad = True newwindow.Modal = True RadWindowManager1.Windows.Clear() RadWindowManager1.Controls.Add(newwindow) End IfPlease help. Thanks
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadGrid1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>"RadControls for ASP.NET AJAX requires a ScriptManager before any of the controls on the page. You may instead use the RadScriptManager although it is not required. RadScriptManager has some optimization capabilities that can be used for maximum performance."
I ran the first application from the Training Guide (PDF page 34), and I am getting the below error about the web.config file and using the SmartTag to configure this control as well as the RadScriptManager control:
'~/Telerik.Web.UI.WebResource.axd' is missing in web.config. RadScriptManager requires a HttpHandler registration in web.config. Please, use the control Smart Tag to add the handler automatically, or see the help for more information: Controls > RadScriptManager
Where does this control belong on the page and how do I fix the web.config so that this lesson can run in the browser correctly?
Thanks,
R2
<telerik:RadComboBox ID="RadComboBox1" runat="server" Width="277px" Height="140px" EmptyMessage="Type in..." DataTextField="Item" OnItemsRequested="RadComboBox1_ItemsRequested" AutoPostBack="true" EnableLoadOnDemand="true" Filter="Contains" LoadingMessage="Loading..." MarkFirstMatch="true" > </telerik:RadComboBox>
<PagerStyle Mode="Slider" />
2 out of 3 screens are showing this pager slider correctly .But in one page the slider is coming twice.
On page load only one slider is there.But if i go to other page (on clicking the slider), it gives two sliders one below other as mirror image.
I have no idea why this is coming .Could any body please advice me?
I am attaching the slider image what i got.
Thanks....