Insert/Attach text or image or files as a html string in Rich text editor at the cursor position
I am using a rich text editor and trying to insert file or some image at the desired cursor position. But, the files or image is not being added in between text or in between two files or in between two images, it is being added at the end of image/file.
What should I do so that any image/text/file get added at desired cursor position.
I am trying to implement this in ios
mobile app and safari browser but perhaps it is not a browser-specific issue.
<div id="editor" contenteditable="true"></div>
editor.js
var RTE = ;
RTE.editor = document.getElementById("editor");
RTE.insertFileComponent = function(fileId, fileName, fileSize, type, componentId)
var htmlTag = '<div contenteditable="false" class="attach"><div class="fileMetaData">'+ fileName +'</div>';
document.getElementById('editor').focus();
RTE.insertHTML(htmlTag);
RTE.updateContentOffset();
window.webkit.messageHandlers.general.postMessage("input");
RTE.updateContentOffset = function()
var object =
caretYPosition: RTE.getCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.offsetDidChange.postMessage(object);
;
RTE.insertHTML = function(html)
RTE.restorerange();
document.getElementById('editor').focus();
document.execCommand('insertHTML', false, html);
RTE.updateHeight();
;
RTE.updateHeight = function()
var object =
clientHeight: document.getElementById('editor').clientHeight,
relativeCaretYPosition: RTE.getRelativeCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.heightDidChange.postMessage(object);
;
RTE.restorerange = function()
var selection = window.getSelection();
selection.removeAllRanges();
var range = document.createRange();
range.setStart(RTE.currentSelection.startContainer, RTE.currentSelection.startOffset);
range.setEnd(RTE.currentSelection.endContainer, RTE.currentSelection.endOffset);
selection.addRange(range);
javascript html css safari rich-text-editor
add a comment |
I am using a rich text editor and trying to insert file or some image at the desired cursor position. But, the files or image is not being added in between text or in between two files or in between two images, it is being added at the end of image/file.
What should I do so that any image/text/file get added at desired cursor position.
I am trying to implement this in ios
mobile app and safari browser but perhaps it is not a browser-specific issue.
<div id="editor" contenteditable="true"></div>
editor.js
var RTE = ;
RTE.editor = document.getElementById("editor");
RTE.insertFileComponent = function(fileId, fileName, fileSize, type, componentId)
var htmlTag = '<div contenteditable="false" class="attach"><div class="fileMetaData">'+ fileName +'</div>';
document.getElementById('editor').focus();
RTE.insertHTML(htmlTag);
RTE.updateContentOffset();
window.webkit.messageHandlers.general.postMessage("input");
RTE.updateContentOffset = function()
var object =
caretYPosition: RTE.getCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.offsetDidChange.postMessage(object);
;
RTE.insertHTML = function(html)
RTE.restorerange();
document.getElementById('editor').focus();
document.execCommand('insertHTML', false, html);
RTE.updateHeight();
;
RTE.updateHeight = function()
var object =
clientHeight: document.getElementById('editor').clientHeight,
relativeCaretYPosition: RTE.getRelativeCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.heightDidChange.postMessage(object);
;
RTE.restorerange = function()
var selection = window.getSelection();
selection.removeAllRanges();
var range = document.createRange();
range.setStart(RTE.currentSelection.startContainer, RTE.currentSelection.startOffset);
range.setEnd(RTE.currentSelection.endContainer, RTE.currentSelection.endOffset);
selection.addRange(range);
javascript html css safari rich-text-editor
add a comment |
I am using a rich text editor and trying to insert file or some image at the desired cursor position. But, the files or image is not being added in between text or in between two files or in between two images, it is being added at the end of image/file.
What should I do so that any image/text/file get added at desired cursor position.
I am trying to implement this in ios
mobile app and safari browser but perhaps it is not a browser-specific issue.
<div id="editor" contenteditable="true"></div>
editor.js
var RTE = ;
RTE.editor = document.getElementById("editor");
RTE.insertFileComponent = function(fileId, fileName, fileSize, type, componentId)
var htmlTag = '<div contenteditable="false" class="attach"><div class="fileMetaData">'+ fileName +'</div>';
document.getElementById('editor').focus();
RTE.insertHTML(htmlTag);
RTE.updateContentOffset();
window.webkit.messageHandlers.general.postMessage("input");
RTE.updateContentOffset = function()
var object =
caretYPosition: RTE.getCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.offsetDidChange.postMessage(object);
;
RTE.insertHTML = function(html)
RTE.restorerange();
document.getElementById('editor').focus();
document.execCommand('insertHTML', false, html);
RTE.updateHeight();
;
RTE.updateHeight = function()
var object =
clientHeight: document.getElementById('editor').clientHeight,
relativeCaretYPosition: RTE.getRelativeCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.heightDidChange.postMessage(object);
;
RTE.restorerange = function()
var selection = window.getSelection();
selection.removeAllRanges();
var range = document.createRange();
range.setStart(RTE.currentSelection.startContainer, RTE.currentSelection.startOffset);
range.setEnd(RTE.currentSelection.endContainer, RTE.currentSelection.endOffset);
selection.addRange(range);
javascript html css safari rich-text-editor
I am using a rich text editor and trying to insert file or some image at the desired cursor position. But, the files or image is not being added in between text or in between two files or in between two images, it is being added at the end of image/file.
What should I do so that any image/text/file get added at desired cursor position.
I am trying to implement this in ios
mobile app and safari browser but perhaps it is not a browser-specific issue.
<div id="editor" contenteditable="true"></div>
editor.js
var RTE = ;
RTE.editor = document.getElementById("editor");
RTE.insertFileComponent = function(fileId, fileName, fileSize, type, componentId)
var htmlTag = '<div contenteditable="false" class="attach"><div class="fileMetaData">'+ fileName +'</div>';
document.getElementById('editor').focus();
RTE.insertHTML(htmlTag);
RTE.updateContentOffset();
window.webkit.messageHandlers.general.postMessage("input");
RTE.updateContentOffset = function()
var object =
caretYPosition: RTE.getCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.offsetDidChange.postMessage(object);
;
RTE.insertHTML = function(html)
RTE.restorerange();
document.getElementById('editor').focus();
document.execCommand('insertHTML', false, html);
RTE.updateHeight();
;
RTE.updateHeight = function()
var object =
clientHeight: document.getElementById('editor').clientHeight,
relativeCaretYPosition: RTE.getRelativeCaretYPosition(),
lineHeight: RTE.getLineHeight()
;
window.webkit.messageHandlers.heightDidChange.postMessage(object);
;
RTE.restorerange = function()
var selection = window.getSelection();
selection.removeAllRanges();
var range = document.createRange();
range.setStart(RTE.currentSelection.startContainer, RTE.currentSelection.startOffset);
range.setEnd(RTE.currentSelection.endContainer, RTE.currentSelection.endOffset);
selection.addRange(range);
javascript html css safari rich-text-editor
javascript html css safari rich-text-editor
asked Nov 15 '18 at 4:32
MahiMahi
787320
787320
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53312480%2finsert-attach-text-or-image-or-files-as-a-html-string-in-rich-text-editor-at-the%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53312480%2finsert-attach-text-or-image-or-files-as-a-html-string-in-rich-text-editor-at-the%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown