7 Answers, 1 is accepted
Just set its VisibleStatusbar property to false.
Kind regards,
Marin Bratanov
the Telerik team
I have use VisibleStatusbar property to false also I have use set status("")........
Still I am not able to hide the status bar .....
Unfortunately I couldn't replicate the issue at my end. Please have a look into the following code snippet I tried.
ASPX:
<telerik:RadWindow ID="RadWindow" runat="server" VisibleOnPageLoad="true" VisibleStatusbar="false"></telerik:RadWindow>Please provide your code if it doesn't help.
Thanks,
Shinu.
Thank U for your reply .... But d problem yet not resolved .....
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Office2010Black">
<Windows>
<telerik:RadWindow ID="ListDialog" runat="server" Title="Details" Modal="true"
BackColor="White" VisibleStatusbar="false" Left="10" Top="10">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
Such an issue is not expected. There is no known issue with the VisibleStatusBar property of the RadWindow. As an alternative please try the following CSS.
CSS:
<style type="text/css"> .rwStatusbarRow { display : none !important; }</style>Thanks,
Shinu.
Problem is resolved ....
Solution :-
var oWnd2 = oBrowserWnd.radopen(sQueryString, "ABC");
oWnd2.set_status(" ");
oWnd2.set_visibleStatusbar(false);
Thanks...
Varun:
Thank you so much for working so hard to resolve this! You were a lifesaver. I had been pulling my hair out trying to solve this problem. Your solution worked perfectly for me. Thank you so much! Now I can move on to the next problem that needs solving.