Hi,
i have a radwindow with custom skin. the javascript written to open is:
I want to change this in c#
for a condition i have to open the rad window dynamically so in page load i have written like this :
i have a radwindow with custom skin. the javascript written to open is:
function
GetRadWindow()
{
return window.radWindow || window.frameElement.radWindow;
}
function
OpenPopup(windowid)
{
var oWnd=$find(windowid);
oWnd.show();
var frame = oWnd.get_contentFrame();
frame.setAttribute(
"allowTransparency","true");
}
Here i am able to get the frame and to allow the transparency.I want to change this in c#
for a condition i have to open the rad window dynamically so in page load i have written like this :
if
(condition here)
{
window1.VisibleOnPageLoad =
true;
}
But i want to get the frame and change its transparency.
so how can i get the frame to change its transparency in c#
Thanks
Sai