-
For an application I'm working on I need to present documents that can be marked up (ie. make things bold or highlight sections), but where the user should not be able to change the text itself. Things I tried:
Is there an elegant way to prevent changing the text without disabling other markup? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You might be able to disable operations specifically relating to text manipulation by overriding editor methods like Check this file for a list of editor methods that might need overriding. |
Beta Was this translation helpful? Give feedback.
You might be able to disable operations specifically relating to text manipulation by overriding editor methods like
insertText
usingwithOverrides
. Let me know if you need help doing that.Check this file for a list of editor methods that might need overriding.