I have the following version of your ASP.NET AJAX controls and experiencing a rather frustrating issue. I would like to use horizontal scrolling and having six frozen columns because we have over 20 columns in our gird..
When I have the following settings below the grid does not expand 100% on each side. It will only expand to fill in the whole area when I do one of two things.
- Grab a column header and expand it, even just a little movement makes the grid expand the whole distance.
- Scrolling horizontally also causes the columns to no longer align under the correct data.
- Another think, I have no issues when running on my pc with localhost. The issue only arrises when I push the code to the server.
- This only happens in Internet Explorer 9 with Compatibility View disabled
In order to avoid this unpleasant view I have had to turn UseStaticHeaders to false.
There has got to be another way, I want the headers to be static.
We are currently using Telerik version 2013.1.220.35
Here are the client settings we are using
<ClientSettings AllowDragToGroup="True" ClientEvents-OnRowSelecting="CancelNonInputSelect" ClientEvents-OnRowDeselecting="CancelNonInputSelect"> <Resizing AllowColumnResize="True" AllowRowResize="False" ResizeGridOnColumnResize="False" ClipCellContentOnResize="True" EnableRealTimeResize="False" /> <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" FrozenColumnsCount="6" /> <Selecting AllowRowSelect="True" /> </ClientSettings>Your help would be much appreciated.