YNICTE/BO/Views/Shared/Partial/Editor.cshtml

19 lines
644 B
Plaintext
Raw Normal View History

2020-10-12 14:39:23 +09:00
@model NP.Model.EditorApi
@{
var id = Model.Name.Replace(".", "_");
var name = Model.Name;
var style = Model.Style ?? "";
var row = Model.Row < 1 ? 5 : Model.Row;
var data = Model.Data ?? "";
}
<textarea class="editorarea" name="@name" id="@id" rows="@row" cols="100" style="width: 100%; @style">@Server.UrlDecode(data)</textarea>
<script type="text/javascript">
var oEditors = [];
nhn.husky.EZCreator.createInIFrame({
oAppRef: oEditors,
elPlaceHolder: '@(id)',
sSkinURI: "/content/smarteditor/SmartEditor2Skin.html",
fCreator: "createSEditor2"
});
</script>