dev.e.loper
dev.e.loper

Reputation: 36044

Telerik RadWindow without NavigateURL?

I want a modal popup effect to display dynamic content on a single page. I'm working with Telerik controls. Telerik has a control called RadWindow which is more or less a modal window.

It looks like the only content that is to be displayed in RadWindow is the content of a page that is specified in NavigateURL. That is a problem for me because what I want to display is the dynamic content that I show on the same page.

Is it possible to display content that is on the same page using RadWindow?

Upvotes: 1

Views: 7532

Answers (3)

GeorgiTunev
GeorgiTunev

Reputation: 480

For some time, RadWindow can display content from the main page as well. Here is a link to the demo: http://demos.telerik.com/aspnet-ajax/window/examples/internalcontent/defaultcs.aspx

Upvotes: 2

Jesper Petersen
Jesper Petersen

Reputation:

RadDock does what RadWindow does. Only, it takes input from the current page instead of from an external URL.

Upvotes: 2

samiz
samiz

Reputation: 1063

The RadWindow is an iframe. It has to have a separate page to render, unless you use the clientside radalert and radconfirm methods--you can pass in HTML for an alert or confirm dialog that doesn't require a separate page. That doesn't sound like what you want. Consider using the RadToolTip or the AjaxToolkit ModalPopupExtender instead.

Upvotes: 3

Related Questions