I have an application that contains a large number of digit/Editors created declaratively. I need to add an onpaste event to these editors in order to convert the pasted content to plain text before pasting. I am having trouble getting the event to trigger. I have tried attaching the event both as a component in data-dojo-props and as a separate data-dojo-attach-event attribute. Neither seem to work.
Here is an example of one of the fields:
<div data-dojo-type="dijit/Editor" id="Editor1" name="Editor1Content"
data-dojo-props="extraPlugins:
['createLink','unlink','fontSize','foreColor','hiliteColor'],
onChange:function(){MarkDocAsChanged();}" data-dojo-attach-
event="onPaste:function(){pasteAsPlainText(event);}" >This is the current
field content</div>
Can anyone point me in the right direction?
Looking at the dijit/Editor doc, it doesn't seem to have support for the onPaste event. You could try attaching an onpaste listener to the widget.domNode, intercept the event, and convert the value there and then set it as the widget.value.