Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a telerik RadTextBox, in which i want to display one line, the problem the content is a little bit scrolling and don't display all the text, how can i fix it. thanks in advance.

share|improve this question
Not ware of RadTextBox but have you changed the default size of your textbox? – Nick Sep 4 '12 at 14:22
yes... i set it to 16px and the font-size 10px... it works very well on chrome and IE but not on firefox – Vervatovskis Sep 4 '12 at 14:27
change it to something bigger and see how it works. Uses CSS width property if HTML size does not work. Size does not take px btw :) but characters – Nick Sep 4 '12 at 14:34
Is this an issue of your text running past the end of the text box or what? If that is the problem then just make the box bigger. – Chris Sep 4 '12 at 21:24

1 Answer

up vote 0 down vote accepted

try to use textmode="singleline"

<telerik:RadTextBox runat="server" ID="txtbox1" TextMode="SingleLine"></telerik:RadTextBox>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.