English 中文(简体)
Parent Page shows through Filter Menus in RadWindow embedded RadGrid
原标题:

I have a RadGrid in a RadWindow set to Modal.

I m seeing two issues.

The first and most critical ONLY HAPPENS IN IE7 and NOT in FIREFOX is that the Filter Menus of the RadGrid do not display when clicked. Instead a box the size of the menus is opened through which I can see the parent page.

The second and probably related HAPPENS IN BOTH IE AND FIREFOX is that when I drag the RadWindow the content of the RadWindow disappears and is replaced by the same transparency to the parent page.

Any help you could offer would be great. I ve spent all day hunting and pecking through CSS trying to find it.

Grid and window declarations follow.

    <telerik:RadWindowManager 
OnClientClose="OnViewerClose"
Behaviors="Close, Move, Resize,Maximize" 
ID="RadWindowManager" 
DestroyOnClose="true"
Opacity="99" 
runat="server">
    <Windows>
        <telerik:RadWindow 
            ID="AssociateUserWindow" 
            VisibleOnPageLoad="false" 
            Width="600"
            Height="400"
            runat="server"
            Overlay="true"
            KeepInScreenBounds="true"
            Modal="true"
            Skin="WebBlue">
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>

        <telerik:RadGrid 
        ID="rgUsers" 
        runat="server" 
        AllowPaging="true" 
        AllowSorting="true" 
        AutoGenerateColumns="false" 
        CellPadding="1" 
        CellSpacing="2" 
        GridLines="Vertical" 
        Skin="WebBlue"
        Width="100%"
        OnItemDataBound="rgUsers_ItemDataBound"
        OnNeedDataSource="rgUsers_NeedDataSource"
        PageSize="5"


        >
        <PagerStyle Mode="NumericPages"></PagerStyle>
        <MasterTableView DataKeyNames="UserId" AllowMultiColumnSorting="True" AllowFilteringByColumn="true" HierarchyDefaultExpanded="true">
            <Columns>...ommitted...</Columns>
        </MasterTableView>
    </telerik:RadGrid>
最佳回答

Nevermind. I ve found the issue... that opacity setting was the culprit. Removing it from the radwindow manager fixed it.

问题回答

Are you able to extract a runnable sample that displays the issue? If you can I think the best thing to do here, since the markup that you posted looks completely fine, is to submit this in a support ticket over at Telerik. Their support guys will probably be the best to figure out what the issue might be.





相关问题
Discuss on Commercial Component libraries of silverlight

I am now looking forward to buy a component library of silverlight for increase the productivity. I find there are number of them. Telerik ComponentOne ComponentArt Infragistics Syncfusion I found ...

Telerik RadGrid: grid clientside pagination

I have a web service which returns me some data,I am massaging this data and using this as datasource for my radgrid (telerik). The datasource is quite large, and would like to paginate it. I found ...

Binding a radgrid to a tree like data structure

I have a structure that looks following Class TreeNode { public TreeNode Parent { get; } public IEnumerable<TreeNode> Children { get; } public . . . . } I want to bind this to a ...

IQueryable into a hierarchy

I currently have an IQueryable of Questions. In my Question object I have and "id" and a "parentId" which can be used to create a hierarchy. Currently, I bind a RadTreeView to the IQueryable of ...

Expand all items in RadGrid Hierarchy

I am using a RadGrid (2009 Q2) with a hierarchy. Is there a way in the client api to expand all rows and vice-versa? thanks! Update: I have written a javascript function based off the api ...

热门标签