Just for reminder, how to disable line break in the Radgrid and for Toolbar Buttons
1) for Toolbar Buttons : Create Style Sheet with the white-space attribute
for Example:
<style type=”text/css”>
.NoWrapClass
{
white-space: nowrap;
}
</style>
Set the CssClass Property of the Control with the Value of your CssClass.
2) To disable the line break for the RadGrid Columns, you have first to create your own Skin, because the Telerik Style’s are deeply inherited by these skins. The recommended way to change the Style is to create your own skin, and change the Styles, that can’t be set with the Skin editor, manually.
You can find the Style Builder here: Telerik Visual Style Builder
Editing Skins general information information to Skins
The displayed Style needs to be changed at the level where the table cells / controls are attributed. You can Read the following links for further Information: Understand the Skin CSS and CSS Skin File Selectors.
At least, to prevent the Column line-break you have change the following css-classes :
.RadGrid_ecspand .rgHeader,
.RadGrid_ecspand th.rgResizeCol
{
…….
white-space: nowrap;
}