Hello,
I have a question about the Title property of the RadWindow.
On a master page, I've added a RadWindowManager, with a RadWindow inside.
There is more than one page that is using this master, and depending of the current content page, the same popup displays different data (the popup content is ensured by other aspx pages, especially created for this).
I'm trying to set up a different title on the popup, depending of the current page of the master, with no luck. Because the aspx pages used in the popup are used in other parts of my site, I cannot set a title at design time on these pages (using Page.Title, or <head><title></title></head> tags).
Now I'm setting the title programmatically in the content page on Page_Load, like this:
myMasterPage.wndPopup.Title = "My Title"; |
, but this does not seem to work. I'm assuming this happens because this property gets overriden by the empty property on the popup pages (in the <head><title> tags)
Any suggestions are welcome.
Thanks