This is a migrated thread and some comments may be shown as answers.

Modal Window over whole application

1 Answer 37 Views
Window
This is a migrated thread and some comments may be shown as answers.
Krasimir
Top achievements
Rank 1
Krasimir asked on 14 Nov 2011, 05:07 PM
Hello Telerik team,

I have a silverlight application hosted in an MVC application. My Silverlight application in only a part of the screen of the MVC application, so on the page not everything is Silverlight. I have a modal window on my Silverlight application which disabels everything in the Silverlight application while it's active, but everying in the MVC application is still working. My question is: "Is there a way to outspread the Modal Window from the Silverlight application through the MVC application as well?"

here is my code of the Modal Window:

var modalWindow = new DialogParameters
{
       Header = "Pay Internally",
       Content = "You are about to pay " +
                        moneyToPay.ToString("C", Settings.CurrencyCultureInfo) +
                        ". Are you sure?",
                        CancelButtonContent = "No",
                        OkButtonContent = "Yes"
};
RadWindow.Confirm(modalWindow);


Thank you!

1 Answer, 1 is accepted

Sort by
0
Konstantina
Telerik team
answered on 16 Nov 2011, 03:30 PM
Hello Krasimir,

The Window is part of the Silverlight plug-in, so it cannot be rendered outside it. If you want to use RadWindow outside Silverlight and above others Windows elements, I can suggest you to create Windows application in WPF where RadWindow is also available.

Hope this information helps.

Best wishes,
Konstantina
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Tags
Window
Asked by
Krasimir
Top achievements
Rank 1
Answers by
Konstantina
Telerik team
Share this question
or