Thanks for the suggestion. I gave it a shot but it happens not only onFormInit and setting readonly in the datacap is inadequate because it doesn't render the html..
The problem I'm running into is that setting one TinyMCE field to ReadOnly seems to set them all. Consider the following DCT:[HTML] <script language="Javascript"> function dctInit() { IWDatacapture.getItem('/a/a1').setReadOnly(true); } IWEventRegistry.addFormHandler('onFormInit', dctInit); </script>a1 <br /> a2 <br /> [/HTML]As is, both fields a1 and a2 become readonly. Comment out the setReadOnly line and both become editable. Any thoughts?