Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
I have my RadPageView setup with ContentURL, but on come conditions i need to redirect to different URL.
Nothing i tried works.
Help please
<telerik:RadCodeBlock runat=
"server"
>
<script>
function
OnClientClicked(sender, args) {
var
pageview = $find(
"<%= RadMultiPage1.ClientID %>"
).findPageViewByID(
"RadPageView1"
);
//change the content pageview
pageview.set_contentUrl(
"https://docs.telerik.com/devtools/aspnet-ajax/controls/tabstrip/client-side-programming/objects/radpageview-object"
)
}
</script>
</telerik:RadCodeBlock>
<
telerik:RadButton
runat
=
ID
"RadButton1"
Text
"Go to PageView documentation"
OnClientClicked
"OnClientClicked"
AutoPostBack
"false"
/>
telerik:RadTabStrip
"RadTabStrip1"
MultiPageID
"RadMultiPage1"
Tabs
telerik:RadTab
"Tab 1"
></
</
telerik:RadMultiPage
Height
"800px"
SelectedIndex
"0"
telerik:RadPageView
ContentUrl
"https://docs.telerik.com/devtools/aspnet-ajax/controls/tabstrip/client-side-programming/objects/radmultipage-object"