DocumentEditorContainer component provides support for inserting footnotes and endnotes through the in-built toolbar. Refer to the following screenshot.
The Footnotes and endnotes are both ways of adding extra bits of information to your writing outside of the main text. You can use footnotes and endnotes to add side comments to your work or to place other publications like books, articles, or websites.
Document editor exposes an API to insert footnotes at cursor position programmatically or can be inserted to the end of selected text.
<ejs-button id="insertFootnote">insert Footnote</ejs-button>
<div id="documenteditor" style="width:100%;height:100%">
<ejs-documenteditor isReadOnly=false enableEditor=true enableSelection=true enableSfdtExport=true id="DocumentEditor"></ejs-documenteditor>
</div>
<script>
var documenteditor;
document.addEventListener('DOMContentLoaded', function () {
documenteditor = document.getElementById('DocumentEditor').ej2_instances[0];
documenteditor.resize();
});
document.getElementById('insertFootnote').addEventListener('click', function () {
documenteditor.editor.insertFootnote();
});
</script>
public ActionResult Default()
{
return View();
}
Document editor exposes an API to insert endnotes at cursor position programmatically or can be inserted to the end of selected text.
<ejs-button id="InsertEndnote">Insert Endnote</ejs-button>
<div id="documenteditor" style="width:100%;height:100%">
<ejs-documenteditor isReadOnly=false enableEditor=true enableSelection=true enableSfdtExport=true id="DocumentEditor"></ejs-documenteditor>
</div>
<script>
var documenteditor;
document.addEventListener('DOMContentLoaded', function () {
documenteditor = document.getElementById('DocumentEditor').ej2_instances[0];
documenteditor.resize();
});
document.getElementById('InsertEndnote').addEventListener('click', function () {
documenteditor.editor.insertEndnote();
});
</script>
public ActionResult Default()
{
return View();
}
You can update or edit the footnotes and endnotes using the built-in context menu shown up by right-clicking it. the footnote endnote dialog box popup and you can customize the number format and start at. Refer to the following screenshot.