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

Radwindow Mutiple times

1 Answer 42 Views
Window
This is a migrated thread and some comments may be shown as answers.
Kannan
Top achievements
Rank 1
Kannan asked on 30 Jul 2013, 06:58 AM
Hi,
Aspx:

    <telerik:RadWindow ID="RadWindow1" Skin="ContainerStyle" VisibleStatusbar="false"
        EnableEmbeddedSkins="false" Modal="true" Title="RadWindow Output" Width="800px"
        Height="500px" Behavior="Close" runat="server"  >
    </telerik:RadWindow>
Cs:
  RadWindow1.NavigateUrl = objFileManager.GetVirtualFilePath(objFileManager.GetFile(valTPContractUploadFile.CopiedFileFullPath));
  RadWindow1.VisibleOnPageLoad = true;

I've above code using rad window but it open twice

Ive tried the scenario
 
enable view state false,ReloadOnShow = true,ShowContentDuringLoad = false,RadWindow1.DestroyOnClose = true;
above is working in Firefox not in ie8 that is the pdf not opening

also I tried

        RadWindow radWindow = new RadWindow();
        radWindow.Modal = true;
        radWindow.Title = "RadWindow Output";
        radWindow.NavigateUrl = objFileManager.GetVirtualFilePath(objFileManager.GetFile(valTPContractUploadFile.CopiedFileFullPath));
        radWindow.VisibleStatusbar = false;
        radWindow.Width = Unit.Pixel(800);
        radWindow.Height = Unit.Pixel(500);
        radWindow.Visible = true;
        radWindow.VisibleOnPageLoad = true;
        RadWindowManager1.Windows.Add(radWindow);

it is working in Firefox not in IE . while upload the word file it showing multiple open dialogue

We have Telerik 2008 , Dotnet 3.5 , browser Mozilla 9+  and Ie 6 +
Thanks,
Kannan.


1 Answer, 1 is accepted

Sort by
0
Danail Vasilev
Telerik team
answered on 01 Aug 2013, 04:40 PM
Hi Kannan,

I have already replayed to your question in this forum thread, so you can find my answer there. Note also that we highly recommend to always use the latest version of RadControls suite, as there are constantly improvements and new features in each release.

Could I also ask you, to not open multiple forum threads for similar questions, so that forum threads can be easier tracked and answered?

Thank you for your cooperation.

Regards,
Danail Vasilev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Window
Asked by
Kannan
Top achievements
Rank 1
Answers by
Danail Vasilev
Telerik team
Share this question
or