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.
Thanks,
Vinay
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