我有一个包含一个RadTextBox
和一个RadSpell
控件的表。两者都在自己的 td 标签中,但是当显示在 ie 10 和 chrome 中时,RadSpell
按钮与RadTextBox
.
该页面的代码是:
<table>
<colgroup>
<col width="33%" />
<col width="36%" />
<col width="31%" />
</colgroup>
<tbody>
<tr>
<td>
<DescriptionLabel ID="dlNote" Text="Note:" AssociatedControlID="rtbNote" runat="server" />
</td>
<td>
<tel:RadTextBox ID="rtbNote" runat="server" TextMode="MultiLine" CssClass="SmallTextArea"
MaxLength="8000" />
</td>
<td>
<tel:RadSpell ID="spellNote" runat="server" ControlsToCheck="rtbNote" ButtonText="Spell Check"
ButtonType="PushButton" AllowAddCustom="false" />
</td>
</tr>
</tbody>
</table>
我正在使用 Telerik 控件版本 2013.2.611.40
编辑:我不确定 telerik 是如何决定这一点的,但我发现RadTextBox
当 CssClass SmallTextArea 将文本框的宽度设置为 300px 时,跨度的宽度设置为 160px,如下所示:
.SmallTextArea
{
height:150px !important;
width:300px !important;
}