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

Textbox hight

2 Answers 57 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Mark Andrew
Top achievements
Rank 1
Mark Andrew asked on 28 May 2010, 10:32 PM

Hi,
I am trying to set the hight of a textbox control in the grid but it seems that its being limited and I cannot find what is limiting it.  This limit seems to be there in edit mode as well.  Below is the Column I am trying to set.
 

 

 

 

<telerik:GridTemplateColumn DataField="Notes" HeaderText="Notes"   
SortExpression="Notes" UniqueName="Notes">   
<EditItemTemplate>   
<asp:TextBox ID="NotesTextBox" runat="server" Text='<%# Bind("Notes") %>' TextMode="MultiLine" Width="500px" hight="600px"></asp:TextBox>   
</EditItemTemplate>   
<ItemTemplate>   
<asp:TextBox ID="NotesTextBox" runat="server" Text='<%# Eval("Notes") %>' TextMode="MultiLine" Width="500px" hight="100px" ReadOnly="true">  
</asp:TextBox>    
</ItemTemplate>   
</telerik:GridTemplateColumn> 
 

 

 

 

2 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 31 May 2010, 12:42 PM
Hello Mark,

Please examine the following link:
Textbox height may only be adjusted on a row of input basis by setting the Textmode property to Multi-line and then the Rows property to the desired row amount

Regards,
Daniel
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
Mark Andrew
Top achievements
Rank 1
answered on 02 Jun 2010, 02:10 PM
Please disregard, it was a spelling error that was causing the problem.  hight not height = "600"
Tags
Grid
Asked by
Mark Andrew
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Mark Andrew
Top achievements
Rank 1
Share this question
or