<h5>Term & Conditions(English)</h5>
<div class="row">
<div class="col-md-4 mb-3">
<textarea id="termsContent" asp-for="dealerAppSettingsDto.terms" class="form-control tinymce-editor" style="width: 100%;" rows="10">@Model.dealerAppSettingsDto.terms</textarea>
</div>
</div>
niche script me Api use kiye h tinymce site se api key liye h
@section Scripts {
<script src="https://cdn.tiny.cloud/1/xijiufamehg5893wnh5g29y90isnnql0134j1l9vh6kerlyj/tinymce/5/tinymce.min.js" referrerpolicy="origin"></script>
<script>
tinymce.init({
selector: '.tinymce-editor',
plugins: 'advlist autolink lists link image charmap print preview anchor',
toolbar: 'undo redo | formatselect | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | help'
setup: function (editor) {
editor.on('init', function () {
// Set the initial content of the editor to the model property value
editor.setContent(termsContent);
});
}
});
</script>
}
No comments: