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

RadGridView, Filtering and ModalPopup

1 Answer 79 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Tony
Top achievements
Rank 1
Tony asked on 29 Jul 2008, 01:52 AM

I've got a RadGridView within a modal popup window, but the filter by list has the wrong Z-Index.

I've tried a few things to fix it and nothing seems to be working.
My latest attempt:

Style:

 
myFilterStyle {  z-index:100000000000000000000; }  
 
Code:
 <FilterItemStyle CssClass="myFilterStyle" /> 

Any help would be greatly appreciated.  Thank you in advance.

1 Answer, 1 is accepted

Sort by
0
Tony
Top achievements
Rank 1
answered on 29 Jul 2008, 04:24 AM
Well I worked it out a work around.
Fairly sure this isn't the correct way to go about it, but it works:

Within the page itself (NOT a css file OR within the <head> tags of the Master Page if your using one.):

<asp:Content ID="Content1" ContentPlaceHolderID="cph" runat="Server">  
    <style type="text/css">  
        .rmContextMenu  
        {  
            z-index:1000000000;   
            overflow:visible;  
        }  
    </style> 
 
..... 

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