This is a migrated thread and some comments may be shown as answers.

Increase ToolStrip Text Width

3 Answers 58 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Michael Dillon
Top achievements
Rank 1
Michael Dillon asked on 17 Jun 2010, 08:19 PM
I've created a toolstrip with about half a dozen entries. When its displayed it cuts off the text description of each of the tools. I can make the toolstrip wider but it continues to trim the text. See the pic below for an example.

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 18 Jun 2010, 09:03 AM
Hi Michael,

You can increase the toostrip text width using this css class:

<style type="text/css">
    .reDropDownBody .reTlbVertical ul li .reButton_text
    {
        overflow: visible !important;
    }
</style>


Best regards,
Rumen
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Michael Dillon
Top achievements
Rank 1
answered on 18 Jun 2010, 04:57 PM
That causes the text to be displayed, but the selection box is now incorrectly sized. There is now way in code to control the size of the EditorTool Object so the text is displayed the the hover behavior is correct?


0
Rumen
Telerik team
answered on 21 Jun 2010, 12:06 PM
Hello Michael Dillon,

Please, try the following two additional classes which fixed the problem on my end:

<style type="text/css">
    .reDropDownBody .reTlbVertical ul li .reButton_text
    {
        overflow: visible !important;
    }
     
    .reDropDownBody .reTlbVertical .reToolbar {width: 400px !important; }
      
    div.reDropDownBody .reTlbVertical ul li a:hover {background-color: #ccc !important; background-image: none !important; width: auto !important;}
</style>



Greetings,
Rumen
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Editor
Asked by
Michael Dillon
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Michael Dillon
Top achievements
Rank 1
Share this question
or