Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Sitecore で、リッチ テキスト エディターのレンダリング/コンポーネントを作成し、それをエクスペリエンス エディター (ASP.NET MVC アプリケーションの場合) のページに表示するための手順は何ですか?
ありがとうございました!
本文と呼ばれるリッチ テキスト フィールドを持つテンプレートを使用するアイテムでは、これがレンダリング マークアップになります。編集モードでレンダリングすると、フィールドは完全に編集可能になります。
@using Sitecore.Mvc @using Sitecore.Mvc.Presentation @model RenderingModel <div class="row"> @Html.Sitecore().Field("Body") </div>