1
KendoUI SplitterPane
내에서 혼합 된 콘텐츠를 지정하는 데 올바른/가장 안전한 구문은 무엇입니까?SplitterPane에서 혼합 된 콘텐츠
추가 정보 :
나는 KendoUI에서 Splitter
을 사용하고 있는데 나는 때때로 SplitterPane
내에서 다양한 사용자 정의 HtmlHelpers
함께 일반 HTML 마크 업의 조합을 선언 할 필요가있다. 예 : 나는 현재 @<text>
면도기 구문을 사용하고
@(Html.Kendo().Splitter()
.Name("main-container")
.Panes(panes =>
{
panes.Add().Content(
@<text>
@Html.CustomHelpers().SomeCustomHelper()
<div>This is some markup</div>
@Html.CustomHelpers().AnotherCustomHelper()
</text>
);
}))
그러나 그것은 매우 깨끗 생각하지 않습니다. 제가 간과 할 수있는 더 좋은 대안이 있습니까?