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

Dialogs behind popup form.

1 Answer 49 Views
Grid
This is a migrated thread and some comments may be shown as answers.
aykut
Top achievements
Rank 1
aykut asked on 19 Nov 2008, 03:53 PM

I have simple radgrid. One column is template column and it had RADEditor. grid opens modal edit dialog:
<MasterTableView CommandItemDisplay="Top" DataKeyNames="ID" DataSourceID="SqlDataSource1" EditMode="PopUp">

column template is:

<telerik:RadEditor ID="RadEditor1" Runat="server"  
Content='<%# Bind("databasefield") %>'>
<Content>
</Content>
</telerik:RadEditor>

when I edit grid, popup appears,which is fine, then when I click imagemanager or flashmanage button to select image, this dialog appears BEHIND the grid's popup dialog and cannot be accessed.

I searched thru forums but couldn't find any solution.. Im not very good at RAD products. can you help me please ?
best regards.

1 Answer, 1 is accepted

Sort by
0
aykut
Top achievements
Rank 1
answered on 19 Nov 2008, 04:03 PM
Okay, problem solved with followind code. I combined different solutions from different posts:

 

<style type="text/css">

 

 

.radwindow.radwindow_Telerik.normalwindow.transparentwindow

 

{

 

z-index:13000 !important;

 

}

 

.radwindow.radwindow_Telerik.normalwindow.transparentwindow

 

{

 

z-index:13001 !important;

 

}

 

.radwindow.radwindow_Default.normalwindow.transparentwindow

 

{

 

z-index: 9002 !important;

 

}

 

</style>

best regards to everybody.

 

Tags
Grid
Asked by
aykut
Top achievements
Rank 1
Answers by
aykut
Top achievements
Rank 1
Share this question
or