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

Edge and dropdown list filter

3 Answers 92 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Louis
Top achievements
Rank 1
Iron
Iron
Iron
Louis asked on 13 Oct 2017, 01:13 AM
Hello.  Under IE 11 everything works great.  But on EDGE when I use dropdown list for filter it's difficult to see the list (see attachment).  Any idea?

3 Answers, 1 is accepted

Sort by
0
Todor
Telerik team
answered on 17 Oct 2017, 01:38 PM
Hi Louis,

From the provided screenshot I could assume that you are using the obsolete ASP.NET WebForms Viewer. It seems that the report parameters area is partly hidden by the report. We tested with a sample project, but couldn't reproduce the problem in the Edge browser.

For your convenience the testing sample project is attached. The "WebApplication2" project uses the obsolete ASP.NET WebForms Viewer, and on our side does not experience the issue on neither of the major browsers. The "WebApplication1" project uses the HTML5 Viewer and is included just for comparison. I would recommend you to switch to the HTML5 Report Viewer.

If you would like us to investigate the issue further, I would ask you to open a ticket and attach a sample runnable project that demonstrates the problem.

Regards,
Todor
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Louis
Top achievements
Rank 1
Iron
Iron
Iron
answered on 17 Oct 2017, 01:40 PM
Thank you for your time.
0
Louis
Top achievements
Rank 1
Iron
Iron
Iron
answered on 05 Nov 2017, 08:24 PM

I got the problem if it's can help someone else.  I display report using TabStrip.  I have to remove the event On Select to see a correct display under Edge.

 

@{ Html.Telerik().TabStrip()
 .Name("TabStripChoixEtats")
.Items(tabstrip =>
{
    tabstrip.Add()
    .Text(@"R1")
    .Content(Html.Partial("R1", null, new ViewDataDictionary { { "No", Model.No }}).ToHtmlString()
    );
    tabstrip.Add()
    .Text(@"R2")
    .Content(Html.Partial("R2", null, new ViewDataDictionary { { "No", Model.No } }).ToHtmlString()      
    );
})
.SelectedIndex(0)
.ClientEvents(events => events.OnSelect("OnSelect"))
.Render();
}
@(Html.Telerik().ScriptRegistrar().Globalization(true).jQuery(false))
@(Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.min.css").Add("telerik.vista.min.css")))
<script type="text/javascript">
    function OnSelect(e) {
        var viewer = eval("ReportViewerFic");
        viewer.AdjustReportAreaHeight();
        viewer.RefreshReport();
    }
  </script>
Tags
General Discussions
Asked by
Louis
Top achievements
Rank 1
Iron
Iron
Iron
Answers by
Todor
Telerik team
Louis
Top achievements
Rank 1
Iron
Iron
Iron
Share this question
or