I am attempting to open a rad window, passing a url, rather than a named instance of an existing window.
The call to set_title() and set_skin() don't appear to work. Also I would like to set the behaviors so there is no maximise and minimise buttons. Also I would like it modal. Here is the simple code I have.
I am struggling to find document for the client side radWindow object. I have looked in the online documentation but no luck. Could you pass a link to the methods / properties available. In the debugger, the radWindow object seem to have a lot of duplicate methods e.g. set_title() and SetTitle(). Which should I use?
The call to set_title() and set_skin() don't appear to work. Also I would like to set the behaviors so there is no maximise and minimise buttons. Also I would like it modal. Here is the simple code I have.
<script type="text/javascript"> |
function openRadWindow() |
{ |
var oWnd = window.radopen("Window1.aspx", null); |
oWnd.setSize(700,700); |
oWnd.set_title = "test"; |
oWnd.set_skin = "Office2007"; |
} |
</script> |
I am struggling to find document for the client side radWindow object. I have looked in the online documentation but no luck. Could you pass a link to the methods / properties available. In the debugger, the radWindow object seem to have a lot of duplicate methods e.g. set_title() and SetTitle(). Which should I use?