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 を使用しています
編集:テレリックがこれをどのように決定するかはわかりませんがRadTextBox
、CssClass SmallTextArea がテキストボックスの幅を次のように 300px に設定すると、スパンの幅が 160px に設定されることがわかりました:
.SmallTextArea
{
height:150px !important;
width:300px !important;
}