How to programatically disable the cute editor using JavaScript

  •  06-14-2006, 5:01 AM

    How to programatically disable the cute editor using JavaScript

    Hi Team,
     
     We are using Cute Editor 5.1. My requirement is to programmatically disable the CuteEditor control (so it will not accept user input) using Javascript.  I tried with following set of code. it doesn't work. Please do the needful.
     
    var editor1=document.getElementById('CE_ceControl_ID');
    editor1.ReadOnly=true;
     
    or
     
    editor1.ReadOnly="True";
     
    Thanks and Regards,
    N.Rajaraman.
View Complete Thread