2013-04-17 55 views
2

我想在Sharepoint 2013中使用富文本框,如下圖所示。我怎樣才能做到這一點?在Sharepoint 2013中使用富文本框

Sharepoint 2013 rich text editor

我已經使用下面的代碼。

<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> 

<SharePoint:InputFormTextBox ID="RichTextField1" runat="server" TextMode="MultiLine" RichTextMode="FullHtml" Columns="20" Rows="10"/>

,但我無法得到我所需要的。我有一個簡單的滾動多行文本框。

謝謝你的答案。

enter image description here

+0

同樣的問題,但沒有答案在那裏,http://sharepoint.stackexchange.com/questions/124917/multiple-lines -of-text-rich-text-editor-not-working-chrome – JohnC

回答

3

嘗試

RichText="true" 

加入這個或多或少會是這樣的一個樣本:

<SharePoint:InputFormTextBox ID="rftDefaultValue" 
RichText="true" 
RichTextMode="FullHtml" runat="server" 
TextMode="MultiLine" Rows="5"> 
</SharePoint:InputFormTextBox> 

另外,如果你正在查看這個使用Chrome,它只會顯示爲純文本框,請嘗試使用IE查看此文件:)

+0

謝謝。它在IE中工作。我能做些什麼來使它在所有瀏覽器中都能正常工作? –

+0

即時通訊不太確定,因爲即使是正常的sharepoint文本框也不能在chrome中工作。 –

+0

從今天開始,任何人都應該知道** Chrome **可以與內容編輯器一起工作(至少在SharePoint 2010中 - 所以2013年肯定會起作用)。 – Deryck