iframeAttributes:{ id :"customId" }
Now it's working fine, thanks.
I have added one jQuery script for IntelliSense in side my RTE, but it's not working
$j('#customId').textcomplete([{ match: /#(\w*)$/, search: function (term, callback) { callback($.map(elements, function (element) { return element.indexOf(term) === 0 ? element : null; })); }, index: 1, replace: function (element) { return [element + ' ', ' ']; } }]);
And testing purpose added one div like this
<div id="customId" contenteditable="true" autocorrect="off" style="color: rgb(92, 92, 92);"> <br> </div>
and in here that IntelliSense was working fine
[html] <script> ej.RTE.prototype.custom = function () { console.log("Custom Function"); return true } |
actionComplete: "complete"
function complete(args) { .....
}
How can i call that jQuery function in side the RTE?
Thanks