I am using a textboxes in a FormTemplate. The regular textbox is styled by the grid skin; for some reason the multiline textbox is not styled and font is defaulting to courier. I tried overriding the with local css:
.GridEditForm_Telerik textarea { border:1px solid #828282; font:12px arial,sans-serif; color:#272722; }
Any ideas?
Version 2009.1.311.35
Sample code:
<EditFormSettings EditFormType="Template" CaptionDataField="ClientName" >
<FormTemplate>
<table cellpadding="5" cellspacing="1" width="800" border="0">
<tr>
<td>Address:</td>
<td>
<asp:TextBox ID="txt_Addr" runat="server" Text='<%# Bind( "Addr") %>'
TextMode="MultiLine" Rows="4" Width="300">
</asp:TextBox>
</td>
</tr>
<tr>
<td>City:</td>
<td>
<asp:TextBox ID="txt_City" runat="server" Text='<%# Bind( "City") %>' Width="300">
</asp:TextBox>
</td>
</tr>
</table>
</FormTemplate>
</EditFormSettings>
