We have been using your Grid for sometime now.
At First we used you RadGrid and added a Resizing Property and it works well
<Resizing AllowColumnResize="true" AllowRowResize="false" EnableRealTimeResize="true" ResizeGridOnColumnResize="false">
When we resize the column the grid does not resize(since ResizeGridOnColumnResize ='false')
and this is what we needed.
Then we tried using the Scrolling property.
<Scrolling AllowScroll="true" UseStaticHeaders="true" />
Our Problem is that when we resize a certain Column the whole grid get resized.
When a certain column is resize to the left, the grid does not resize but the column adjust and we can see that at the rightside of the grid that there are white spaces with no grid lines, the last column adjust and leave this white spaces.
When we adjust a column to the right, the grid resizes itself
I want to do two options:
a) when i adjust the grid column, the grid will not resize then the column will resize to the grids width(like the grid before i add scrolling)
b) when i adjust the grid column, the grid is fixed in size the a horizontal scroll will appear and the column will be adjusted
Hope you can help.
Thanks