---
title: "Space between grid and vertical scroll bar in radgrid blank column"  
description: "Space between grid and vertical scroll bar in radgrid blank column"  
author: "Anonymous User"  
published: 2014-11-02  
updated: 2014-11-03  
canonical: https://www.mindstick.com/forum/2490/space-between-grid-and-vertical-scroll-bar-in-radgrid-blank-column  
category: "asp.net"  
tags: ["grid", "telerik", "radgrid"]  
reading_time: 1 minute  

---

# Space between grid and vertical scroll bar in radgrid blank column

I am using a RadGrid with four frozen columns, when I bind the [grid](https://www.mindstick.com/forum/369/how-can-i-add-a-column-name-to-my-grid), it [shows](https://yourviews.mindstick.com/view/81380/new-york-violent-shooting-shows-people-are-not-safe-in-night-life) ([Chrome](https://www.mindstick.com/blog/303260/discover-google-s-latest-ip-protection-privacy-test-feature-in-chrome)) an empty [column](https://www.mindstick.com/forum/33860/how-to-calculate-column-summary-in-sql-server) on the [right](https://www.mindstick.com/articles/12766/check-whether-you-are-doing-digital-transformation-right-or-not) [end](https://yourviews.mindstick.com/view/88503/us-iran-war-live-updates-trump-says-us-in-no-rush-to-end-iran-war), and all the [data](https://www.mindstick.com/articles/13050/salesforce-aiming-to-dominate-predictive-analytics-with-data-science) are misaligned one [row](https://www.mindstick.com/forum/1212/this-row-already-belongs-to-this-table) to the right. In IE it is totally [messed up](https://answers.mindstick.com/qa/36017/what-is-the-most-messed-up-thing-you-have-ever-done-in-any-video-game)!

```
<ClientSettings AllowColumnsReorder="false" EnableRowHoverStyle="false" AllowDragToGroup="false" ><Scrolling AllowScroll="True" UseStaticHeaders="True" ScrollHeight="350px" FrozenColumnsCount="4"></Scrolling><ClientEvents OnGridCreated="GridCreated" />  <Resizing AllowColumnResize="false" EnableRealTimeResize="true" /></ClientSettings>
```

**[Function](https://www.mindstick.com/articles/13001/multi-statement-table-valued-user-defined-function-in-sql-server):**

```
function GridCreated(sender, args) {        var scrollArea = sender.GridDataDiv;        var dataHeight = sender.get_masterTableView().get_element().clientHeight;        if (dataHeight < 350) {            scrollArea.style.height =
dataHeight + 47 + "px";        }    }
```

## Replies

### Reply by Anonymous User

Try setting the scrolling height as following on the HTML side:

```
<Scrolling AllowScroll="True" UseStaticHeaders="True" ScrollHeight="" FrozenColumnsCount="4"></Scrolling>
```


---

Original Source: https://www.mindstick.com/forum/2490/space-between-grid-and-vertical-scroll-bar-in-radgrid-blank-column

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
