System.Web.HttpException: This is an invalid webresource request.
System.Web.HttpException (0x80004005): This is an invalid webresource request.
at System.Web.Handlers.AssemblyResourceLoader.System. Web.IHttpHandler. ProcessRequest(HttpContext context) at System.Web.HttpApplication. CallHandlerExecutionStep. System.Web.HttpApplication. IExecutionStep.Execute() at System.Web.HttpApplication. ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
<
telerik:RadScriptManager
runat
=
"server"
ID
=
"radScriptManager"
OutputCompression
=
"AutoDetect"
CdnSettings-TelerikCdn
=
"Enabled"
CdnSettings-BaseUrl
=
"https://d2i2wahzwrm1n5.cloudfront.net"
EnablePartialRendering
=
"true"
EnableScriptCombine
=
"true"
/>
<
telerik:RadStyleSheetManager
runat
=
"server"
ID
=
"RadStyleSheetManager1"
CdnSettings-TelerikCdn
=
"Enabled"
CdnSettings-BaseUrl
=
"https://d35islomi5rx1v.cloudfront.net"
EnableStyleSheetCombine
=
"true"
/>
<
telerik:RadFormDecorator
ID
=
"radFormDecorator"
runat
=
"server"
DecoratedControls
=
"all"
Skin
=
"Windows7"
/>
I have Telerik controls for ASP.NET used in a web page in my project. There is a RadAjaxPanel, which has a RadComboBox. This combo box has a RadTreeView placed inside it. When a node is clicked in the RadTreeView, the NodeClick event for the RadTreeView is fired which populates data in a RadGrid placed inside the same RadAjaxPanel. The requirement is when the data is getting fetched, a progress bar should appear to indicate a background processing. It is working fine. But, once the grid is loaded, the RadComboBox is disabled and is not available again for selection. Kindly advice me on how to make the RadComboBox available for selection even after the first node click has taken place.
Dim
mainItem
As
New
RadPanelItem()
mainItem.Text =
"Parent"
mainItem.Expanded =
True
Dim
secItem
As
New
RadPanelItem()
secItem.Text =
"Child"
secItem.Expanded =
True
Dim
control
As
New
RadPanelItem()
Dim
uc
As
Control = Page.LoadControl(
"~/WebUserControls/Panels/pnl_Selection.ascx"
)
uc.ID =
"ucSelection"
control.Items.Add(uc)
secItem.Items.Add(control)
mainItem.Items.Add(secItem)
pbPnlBar.Items.Add(mainItem)
<telerik:RadPane ID="viewPane" runat="server" Scrolling="None" >
<telerik:RadSplitter ID="innerSplitter" runat="server" Height="100%" Width="100%" EnableViewState="true" VisibleDuringInit="true" >
<telerik:RadPane ID="leftMiddlePane" runat="server" ContentUrl="StartPage.aspx"></telerik:RadPane>
</telerik:RadSplitter >
</telerik:RadPane >
I have another page say Default.aspx which contains RadTabStrip inside RadTab say copy,paste etc..
programatically I set Default.aspx in the "leftMiddlePane" .
I have another page open using window.open method .
My aim is to access RadTab text in the newly opened window .?
How can I get these RadTabs name inside newly opened window using javascript or Jquery?
Thanks
Sindu.