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

How to set height of set height DialogHandler.aspx

1 Answer 92 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Sujoy Dutta
Top achievements
Rank 1
Sujoy Dutta asked on 27 Nov 2012, 07:11 PM
I'm using Telerik RadEditor. Whenever I click on "Image Manager" it is opening DialogHandler.aspx in popup. How can I set the height of that popup?...Please help..its help.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 28 Nov 2012, 07:36 AM
Hi,

One suggestion is that you can set the height of the popup of the ImageManager by overriding the default CSS as follows.

CSS:
<style type="text/css">
    #RadWindowWrapper_RadEditor1_dialogOpenerImageManager
    {
        width: 1000px !important;
        height:700px !important;
    }
</style>

ASPX:
<telerik:RadEditor ID="RadEditor1" runat="server"  ... >
    ............
</telerik:RadEditor>

Hope this helps.

Regards,
Princy.
Tags
Editor
Asked by
Sujoy Dutta
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or