or

When displaying data in my grid, some of the columns are split over 2 lines. How can I force the display on 1 line only ? there are no carriage returns in the data. Ive displayed the columns like this.
| <telerik:GridBoundColumn |
| DataField="Tel" |
| HeaderText="Tel" |
| SortExpression="Tel" |
| UniqueName="Tel"> |
| </telerik:GridBoundColumn> |

AutoGenerateDeleteColumn="True"
I also have
<
Scrolling AllowScroll="True" UseStaticHeaders="True" />
Having AutoGenerateDeleteColumn set has stopped the grid from scrolling. Also how do I get the delete column to appear on the left hand side of the grid instead of the right.
I am trying the follwing code:
Page.Controls.Add(radcontrol);
But the method takes only System.Web.UI.Controls as a input parameter. So how can i add rad controls on my page at runtime?
Please help me!!!!!