This is a migrated thread and some comments may be shown as answers.

[Solved] How to resize a window to Maximize while open it?

2 Answers 164 Views
Window
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 25 Jun 2008, 04:28 PM
Hi everyone.
I want to make a framework with Radwindow.I divide the page into to part,place a treeview in the left part.when the node of the treeview clicked,a Radwindow is created and open in the left part. I want to implement a framework just like EXT does.
Can you give me some advise?

Of my prolbem is how to resize a window to Maximize when open it?

Best regards!

2 Answers, 1 is accepted

Sort by
0
John
Top achievements
Rank 1
answered on 26 Jun 2008, 02:02 AM
I have find the way to maximize a window.
we can call maximize() method of a window object in js.

I have another question.
How to create a window that with VisibleStatusbar and VisibleTitlebar property is false?

I use following function to Open a new window. but the Statusbar and Titlebar are still visible.

function OpenWindow(name)
        {
            var wnd = window.radopen("http://www.google.com", name);
            var tdzone = $find("workspace");        
            wnd.maximize();
            wnd.VisibleStatusbar="False";
            wnd.VisibleTitlebar="False"
            wnd.RestrictionZoneID="workspace";
            return false;
        }

Can anybody help me to solve the problem?
Thanks a lot.
0
Georgi Tunev
Telerik team
answered on 26 Jun 2008, 08:09 AM
Hello John ,

I have already answered you in the other forum thread that you started on the same topic:
http://www.telerik.com/community/forums/thread/b311D-begeka.aspx



All the best,
Georgi Tunev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Window
Asked by
John
Top achievements
Rank 1
Answers by
John
Top achievements
Rank 1
Georgi Tunev
Telerik team
Share this question
or