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

Rad grid edit popup Odd behaviour in "IE8.0.6001.18702CO"

3 Answers 60 Views
Grid
This is a migrated thread and some comments may be shown as answers.
sreedhar
Top achievements
Rank 1
sreedhar asked on 23 Mar 2011, 06:57 AM
Hi All,

I am facing the problem with Rad grid Edit pop up.While trying to edit the rad grid edit pop up entire scree was freezing including pop up options.any help would be great.

Regards,
Sreedhar reddy V

3 Answers, 1 is accepted

Sort by
0
Chau
Top achievements
Rank 1
answered on 23 Mar 2011, 05:37 PM
I have a similar problem in that when editpopup is used with modal=true, the whole screen is greyed out including the popup window.
I am using Telerik.Web.UI version 2010.3.1215.40, IE 8.0.7601.  The radgrid I am using is within a content page.  Anybody having this same issue?  Thanks, Chau.
0
Pavlina
Telerik team
answered on 28 Mar 2011, 09:48 AM
Hello,

I'm afraid that this is a known issue which is caused by the way browsers handle the stacking of the html elements. In order to work around this you can use a RadWindow instead the built-in popup edit form as shown in this demo.

All the best,
Pavlina
the Telerik team
0
sreedhar
Top achievements
Rank 1
answered on 28 Mar 2011, 11:49 AM
Here is work around for this issue:

In EditFormSettings of the grid
<EditFormSettings CaptionDataField="Client" PopUpSettings-Width="500px" CaptionFormatString="Edit Company: {0}">
                        <EditColumn UniqueName="EditCommandColumn1">
                        </EditColumn>
                    </EditFormSettings>
in Edit form settings remove
PopUpSettings-Modal="true"

Now add a <div> as below
<div id="modalDIV" class="TelerikModalOverlay" visible="false" runat="server" style="z-index: 100;
           position: absolute; filter: alpha(opacity=50); background-color: buttonshadow;
           width: 1440px; top: 0px; left: 0px; opacity: 0.5; height: 700px;">
       </div>
One catch in here, the newly drawn modal Overlay , will not cover master page content here.....

in code behind file.
protected void HomePageGrid_EditCommand(object sender, GridCommandEventArgs e)
{
    modalDIV.Visible = true;      
     
}

Tags
Grid
Asked by
sreedhar
Top achievements
Rank 1
Answers by
Chau
Top achievements
Rank 1
Pavlina
Telerik team
sreedhar
Top achievements
Rank 1
Share this question
or