Is there a way to enable Modaling via Javascript? I am using a RadWindowManager in my MasterPage and calling it from various pages throughout the site. One of my windows requires the window to be modaled but the rest of the site does not require this.
This is what I am using for JavaScript right now
Thanks
This is what I am using for JavaScript right now
<script type="text/javascript" language="javascript"> |
//<![CDATA[ |
function openTerms(url) { |
var oWnd = radopen(url, "RadWindowTerms"); |
oWnd.setSize(610, 600); |
oWnd.Center(); |
} |
//]]> |
</script> |
Thanks