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

Rad Grid's Filter Options(Like Equal to..) Display below MenuBar

1 Answer 95 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rahul Khinvasara
Top achievements
Rank 1
Rahul Khinvasara asked on 10 Feb 2009, 01:02 PM
Hi,
I went through one issue.Problem is that I have RadGrid in a page whose Property AllowFilteringByColumn is set to true.
And there is one RadMenu on top of Page..So When My data is displayed in RadGrid and when I click
on column  for filtering values then I get many Context Menu options Like(Greater Than,Smaller Than,Equal To.....),
these are the options on which based I want to filter my data.
       But Problem is that those Context Menu options's height is more So those come below to Menu Bar.Is there any way  so that
those options will come above of Menu Bar.I tried ZIndex in RadGrid but It does not work.
 I hope I'll get my solution soon.

Thanks

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 10 Feb 2009, 02:10 PM
Hi Rahul,

Try setting lower z-index of RadMenu than RadGrid, so that the filtermenu will appear above the RadMenu. It works for me. Check this and see whether working for you.

ASPX:
<telerik:RadMenu ID="RadMenu1" Runat="server" style="z-index:1000;" > 
        <Items> 
          . . . 
        </Items> 
</telerik:RadMenu> 

You can also refer to the following link to know more about z-index.
Controlling absolute positioning with z-index

Thanks,
Shinu.
Tags
Grid
Asked by
Rahul Khinvasara
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or