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

Drag Column To Group Is Not Visible

1 Answer 105 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Daniel
Top achievements
Rank 1
Daniel asked on 28 Aug 2014, 06:36 AM
Hello,

I am working on a project with a RadGrid inside a RadMenu.

The RadGrid has the following settings:

AllowDragToGroup="True"
ShowGroupPanel="True"

When I drag a column to the Group panel, I cannot see the column while I drag it.
Only when I drag a column to the Group panel outside the RadGrid’s boundaries I can
see it. [see video]. 

How do I solve this?

Thank you,
Daniel.

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 28 Aug 2014, 09:14 AM
Hi Daniel,

You set the z index for the RadGrid higher than that of the RadMenu, which is 7000. Please try the following code snippet.

ASPX:
<telerik:RadGrid CssClass="grid". . >

CSS:
<style type="text/css">
  .grid
  {
      z-index: 8000 !important;           
  }
</style>

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