I'm encountering an odd issue with the rad grid.
And when I resize a column, the contents spill over the right side of the grid border. I was able to recreate this issue in the demo located on http://demos.telerik.com/ASPNET/Prometheus/Grid/Examples/Client/Resizing/DefaultCS.aspx with the AllowColumnResize and ResizeGridOnColumnResize boxes checked.
What I'm trying to do is allow the width of the data area to change without having the actual current grid size change, but if I don't have the ResizeGridOnColumnResize set to true, it will only crunch up the rest of the data in the grid.
<rad:RadGrid ID="lstDiary" runat="server" OnItemDataBound="OnItemDataBound" PageSize="10" AllowPaging="true" > |
<ClientSettings> |
<Resizing AllowColumnResize="true" ResizeGridOnColumnResize="true" ClipCellContentOnResize="true" /> |
</ClientSettings> |
<HeaderStyle Width="100px" /> |
<MasterTableView Width="100%" TableLayout="Fixed" /> |
</rad:RadGrid> |
And when I resize a column, the contents spill over the right side of the grid border. I was able to recreate this issue in the demo located on http://demos.telerik.com/ASPNET/Prometheus/Grid/Examples/Client/Resizing/DefaultCS.aspx with the AllowColumnResize and ResizeGridOnColumnResize boxes checked.
What I'm trying to do is allow the width of the data area to change without having the actual current grid size change, but if I don't have the ResizeGridOnColumnResize set to true, it will only crunch up the rest of the data in the grid.