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

Grid Filter Vertical Scroll Issue

3 Answers 81 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Mike
Top achievements
Rank 1
Mike asked on 06 Jul 2012, 04:50 PM
Hello,

We are using RadControls for ASP.Net AJAX.

We have a RadGrid control set to "Auto-generate columns at runtime". The control also has filtering enabled. We have a vertical scrolling issue. The filter controls are anchored and do not scroll with the vertical scroll bar. This only occurs for filter controls that contain date and numeric values. The filter controls that contain string data scroll correctly with the vertical scroll bar.

The app has been deployed to IIS. We have two client machines that experience the above vertical scrolling issue. A third machine does not have any vertical scrolling issues.

All three machines are running IE9.

Any suggestions?

Thanks,
Mike


3 Answers, 1 is accepted

Sort by
0
Kostadin
Telerik team
answered on 10 Jul 2012, 12:14 PM
Hi Mike,

I guess you are talking about a well known problem in IE7 where elements with position:relative styling in a scrollable container stay static on the page. I suggest you to add a the following CSS rule to try and fix this problem:
CSS:
<style type="text/css">       
        div.RadGrid div.rgDataDiv
        {
            position: relative;
        }
    </style>

If that does not fix your issue, please provide us with your RadGrid declaration, so we can test it locally. 

Greetings,
Kostadin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Mike
Top achievements
Rank 1
answered on 10 Jul 2012, 07:59 PM
Hi Kostadin,

The style you recommended did not work. I have since noticed the following behavior.

I have installed IIS 7.5 on my machine. My machine name is XYZ. If I browse the machine via http://localhost/ the anamoly does not occur. However, if I browse via http://XYZ the anamoly does occur. Both URL's reference the same location on my C: drive (e.g., C:\inetpub\wwwroot\BillingSystem). This is very strange to me.

Any thoughts on this?

Thanks,
Mike

0
Mike
Top achievements
Rank 1
answered on 10 Jul 2012, 08:18 PM
Hi Kostadin,

I found the fix on another post. The problem is related to the browser compatability mode setting. The fix is to disable compatability view.

Thanks,
Mike
Tags
Grid
Asked by
Mike
Top achievements
Rank 1
Answers by
Kostadin
Telerik team
Mike
Top achievements
Rank 1
Share this question
or