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

Custom control problem

1 Answer 66 Views
Window
This is a migrated thread and some comments may be shown as answers.
vinay
Top achievements
Rank 1
vinay asked on 19 Feb 2009, 02:44 PM
Hi,

If I use the RadWindow directly its working fine, but when I used RadWindow throug the custom control it is showing up only the content window, all other parts are missing. I have tried to add propertiesVisibleTitleBar and VisibleStatusBar to true but is of no use and also i have set the width and height but its always the same. Could you please say what I might me missing? Please see attached.
public class XyzControl : RadWindow, XyzInterface
    { 
        protected override void OnPreRender(EventArgs e) 
        { 
            base.OnPreRender(e); 
 
            Modal = true
                       
            Width = Unit.Pixel(760); 
            Height= Unit.Pixel(400); 
             
            Behaviors = WindowBehaviors.Default; 
            VisibleTitlebar = true
            VisibleStatusbar = true
            Visible = true
        } 
         
    } 


Thanks,
Vinay

1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 20 Feb 2009, 11:47 AM
Hello Vinay,

I assume that you are using Ajax for showing this control - it is possible that such problem could occur in such scenario, although you should not experience it with a recent version of the control.

In any case, if the problem persists, I would like to ask you to open a support ticket and to send me a sample project where I can observe this behavior. Just make sure that the project can be run and attach it to the support thread - I will check it right away.


Kind regards,
Georgi Tunev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Window
Asked by
vinay
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or