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:
Thank you!
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!