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

Problem after install Q3

1 Answer 61 Views
Window
This is a migrated thread and some comments may be shown as answers.
Santiago Rial Iglesias
Top achievements
Rank 1
Santiago Rial Iglesias asked on 18 Nov 2008, 08:16 AM

The next code works fine with previous version (Q2):

aspx in master page:  
   
 
< <telerik:RadWindowManager ID="rwm_master" runat="server" Skin="Vista">  
        <Windows> 
            <telerik:RadWindow ID="wndOcupado" runat="server" Title="Aviso" BorderWidth="1" Modal="true" 
                Animation="None" Behavior="none" VisibleStatusbar="false" VisibleTitlebar="false"   
                DestroyOnClose="false" Width="200" Height="150" NavigateUrl="Ocupado.aspx" ReloadOnShow="true" /> 
        </Windows> 
    </telerik:RadWindowManager> 
   
 
 
 
 
C# in code behind:  
 
 
 function Ocupado(blnEstado)  
{  
    var oManager = GetRadWindowManager();  
    var wnd = oManager.getWindowByName('wndOcupado');  
    if (wnd)  
    {  
        if (blnEstado)  
            wnd.show();  
        else      
            wnd.hide();  // <----Problem
    }  
}  
 
function OnRequestStart(sender, args)  
 {  
  Ocupado(true);  
 };  
      
 function OnResponseEnd(sender, args)  
 {  
    Ocupado(false);  
 }; 

After install Q3 the modal window disappears but the previous window is locked (gray color).

 

 

 

 

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 20 Nov 2008, 02:42 PM
Hi Santiago,

The provided code is not enough to understand your logic and I will need to examine your source code. You should not experience problems because there were not made major fixes to the RadWindow control for the Q3 release.

However, if you don't succeed in finding the problem and continue experiencing problems, please prepare a sample, fully runnable demo project, open a new support ticket and send it to me along with detailed reproduction instructions.


All the best,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Window
Asked by
Santiago Rial Iglesias
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or