Ajay
Posted
on Apr 26, 2011
(permalink)
Hi,
We have a scenario where in we have to maximize the RadWindow automatically while opening.
We are using below code to open window:
function openWindowItemDetails(url)
{
var manager = $find("<%= RadWindowManagerListing.ClientID %>");
manager.open(url, "RadWindow1");
}
Any help will be appreciated.
Thanks,
Ajay Sharma
Answer
Shinu
MVP
Posted
on Apr 27, 2011
(permalink)
Hello Ajay,
You can easily achieve this by setting the InitialBehaviors and Behaviors properties. Here is a sample code.
aspx:
Javascript:
Thanks,
Shinu.