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> |