
Gabriel Beauchamp
Top achievements
Rank 2
Gabriel Beauchamp
asked on 03 Jul 2008, 03:52 AM
It would be really cool if the MultiLine TextBox had the ability to automatically expand as the user types in some text.
Just a suggestion for future releases.
Thanks,
Just a suggestion for future releases.
Thanks,
4 Answers, 1 is accepted
0
Hello Gabriel,
Thank you for the great feature request! Unfortunately this behavior is not available out of the box. We have logged this into our system and our RadInput developers will do their best to implement it.
Sincerely yours,
Plamen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Thank you for the great feature request! Unfortunately this behavior is not available out of the box. We have logged this into our system and our RadInput developers will do their best to implement it.
Sincerely yours,
Plamen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

Axe
Top achievements
Rank 1
answered on 19 Jul 2008, 11:33 AM
Hi Gabriel
I needed this functionality so I built it myself using javascript:
Axe
I needed this functionality so I built it myself using javascript:
var txtTo = $find("<%= txtTo.ClientID %>").TextBoxElement;
var numberOfRows;
//Do some calculations to set rows
txtTo.rows = numberOfRows;
RegardsAxe
0

Daniel
Top achievements
Rank 1
answered on 26 Aug 2008, 09:58 PM
I was doing this, but I just upgraded to the latest release and now TextBoxElement is not a valid property?
My code was this:
It no longer works...and using getelement() and setting the rows doesn't work.
HELP!
My code was this:
function CommentsChange(sender,args) { |
sender.TextBoxElement.rows =Math.floor(sender.TextBoxElement.value.length/sender.TextBoxElement.cols) +1; |
} |
It no longer works...and using getelement() and setting the rows doesn't work.
HELP!
0
Hello Daniel,
The api for the asp.net version of the control is slightly different than the standard one. Review the suggested methods and let me know if further questions arise.
Sincerely yours,
Yavor
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
The api for the asp.net version of the control is slightly different than the standard one. Review the suggested methods and let me know if further questions arise.
Sincerely yours,
Yavor
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.