我有一張表,其中包含一個RadTextBox
和一個RadSpell
控制。兩者都在它們自己的td標籤中,但是當以ie 10和chrome顯示時,RadSpell
按鈕與RadTextBox
重疊。 RadSpell無法正確顯示在表
這個頁面的代碼是:
<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
,它的寬度設置爲160px,當CssClass SmallTextArea將文本框的寬度設置爲300px時,像這樣:
.SmallTextArea
{
height:150px !important;
width:300px !important;
}