Hi,
The page is unable to scroll by mouse wheel (only) when the following property is set to TRUE.
C#settings.Model = true;
Popup control code
C#@Html.DevExpress().PopupControl(
popupsettings =>
{
popupsettings.CloseAction = CloseAction.CloseButton;
popupsettings.Name = "pcAlert";
popupsettings.Height = 100;
popupsettings.Width = 300;
popupsettings.ShowCloseButton = true;
popupsettings.ShowHeader = true;
popupsettings.HeaderText = "Alert";
popupsettings.AppearAfter = 10;
popupsettings.DisappearAfter = 10;
popupsettings.Modal = true;
popupsettings.PreRender = (sender, e) =>
{
ASPxPopupControl pc = (ASPxPopupControl)sender;
pc.ModalBackgroundStyle.BackColor = System.Drawing.Color.FromArgb(255, 255, 255);
pc.ModalBackgroundStyle.Opacity = 30;
};
popupsettings.RenderIFrameForPopupElements = DefaultBoolean.True;
popupsettings.SetContent(() =>
{
ViewContext.Writer.Write("<div class=\"line\">");
ViewContext.Writer.Write("<span id='headeralert'></span>");
ViewContext.Writer.Write("</div>");
ViewContext.Writer.Write("<br/><div style='float:right;' class=\"line\">");
Html.DevExpress().Button(
buttonSettings =>
{
buttonSettings.Name = "btnCloseAlert";
buttonSettings.ControlStyle.CssClass = "button";
buttonSettings.Width = 80;
buttonSettings.Text = "Ok";
buttonSettings.CausesValidation = false;
buttonSettings.ClientSideEvents.Click = "function(s, e){pcAlert.Hide(); }";
})
.Render();
ViewContext.Writer.Write("</div><b class=\"Clear\"></b>");
});
}).GetHtml()
Please go through the screen recording for reference
Thanks
Hello,
Thank you for your report. I have reproduced the issue and passed the report to our developers for further research. Since the issue is actual for both MVC and WebForms technologies, I have changed the product of this thread. We will inform you of our results.
We might need to make this ticket Public, so that other customers can track its status. We can remove the attachments and all the private information from the ticket if it is required. Please let us know your opinion on this.
Hello Larry,
You can make this ticket public, Please remove the attached recording.
Thanks
Thank you for the cooperation.