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

Confirm Window Display Problem

3 Answers 121 Views
Window
This is a migrated thread and some comments may be shown as answers.
Tarulatta Patel
Top achievements
Rank 1
Tarulatta Patel asked on 03 Oct 2008, 04:14 PM
I am using Radwindow's Confirmation window. I have .pdf file inside Iframe template on my page. When I open confirmation window, it opens on PDF file. So I am not getting the window Clearly.  I got the window with some part missing, meaning whatever the part of ConfirmWindow goes on that pdf file,doesn't get displayed (pdf file overlayes it).  And I have noticed after opening the window whole page get disabled except that pdf file. User can still click on pdf file with having confirmwindow on page. so i also want user not to click on anywhere until they close the window.

I have set the Radwindows Overlay Peoperty to True. Is there any other property that I need to set or what extra code do I need to write?

Here is my Code,

<telerik:RadWindowManager id="Singleton" runat="server" EnableEmbeddedSkins="false" Overlay="true" Behaviors="Move,Close" > </telerik:RadWindowManager>

<asp:Button ID="btn1" runat="server" Text="Submit" 
 OnClientClick="radconfirm('Are you sure ?', confirmYes, 300, 100); return false;"/>

function confirmYes(arg)
{
if(arg == true){
__doPostBack(
'btnYes','')}
}

 

Please give me any solution.

Thanks,
Tarulatta Patel.

3 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 06 Oct 2008, 10:36 AM
Hi Tarulatta Patel,

The PDF reader that overlaps RadWindow's elements because browsers display the PDF reader above all other DHTML elements on the page. We have researched the issue but at this point we are not aware of any way in which this behavior can be changed.



Greetings,
Georgi Tunev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Tarulatta Patel
Top achievements
Rank 1
answered on 06 Oct 2008, 12:52 PM
I would like to know, Is there any way to open ConfirmWindow at any particular location? I want to open it at left side of my page.
0
Georgi Tunev
Telerik team
answered on 07 Oct 2008, 02:57 PM
Hello Tarulatta,

Yes, this is possible by using the moveTo() function:

var oWnd = radconfirm("sure?",ClientCallBackFn);
oWnd.moveTo(10,10);




Greetings,
Georgi Tunev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Window
Asked by
Tarulatta Patel
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Tarulatta Patel
Top achievements
Rank 1
Share this question
or